The PDF manual 3.8 is available in the DropBox-folder https://www.dropbox.com/sh/zpsvd55g1iyj ... 6kigwAdqGa
"Smart Basic Manual v3-8 Booklet.pdf" should be printed two-sided on A4 paper.
You can then staple and fold it, or spiral bind, as an A5-booklet. It should also fit on 'US legal' size.
"Smart Basic Manual v3-8 A5 serial.pdf" , is the A5 serial version, for storing in iBooks on iPad.
Older versions of the manual are stored in the folder "Previous versions"
Modification date of the manual is on the front cover.
PDF-manual 3-8
- Dutchman
- Posts: 851
- Joined: Mon May 06, 2013 9:21 am
- My devices: iMac, iPad Air, iPhone
- Location: Netherlands
- Flag:
PDF-manual 3-8
Last edited by Dutchman on Sat Jun 21, 2014 1:10 pm, edited 2 times in total.
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: PDF-manual 3-8
Thank you very much
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: PDF-manual 3-8
I want to point on that RETURN command now can return value from function.
- Dutchman
- Posts: 851
- Joined: Mon May 06, 2013 9:21 am
- My devices: iMac, iPad Air, iPhone
- Location: Netherlands
- Flag:
Re: PDF-manual 3-8
OK, I found it now in the help-files. I had overseen it.
Can you give an example? To be sure on the correct syntax
Can you give an example? To be sure on the correct syntax
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: PDF-manual 3-8
For example factorial function:
or even shorter variant:
Code: Select all
def faculty(n)
if n=1 then
return 1
else
return n*faculty(n-1)
end if
end def
Code: Select all
def faculty(n)
if n=1 then return 1 else return n*faculty(n-1)
end def
- Dutchman
- Posts: 851
- Joined: Mon May 06, 2013 9:21 am
- My devices: iMac, iPad Air, iPhone
- Location: Netherlands
- Flag:
Re: PDF-manual 3-8
Thanks. Smart code
Documents have been adapted.
Documents have been adapted.
- Dutchman
- Posts: 851
- Joined: Mon May 06, 2013 9:21 am
- My devices: iMac, iPad Air, iPhone
- Location: Netherlands
- Flag:
Re: PDF-manual 3-8
The manual has now so many pages that it needs to be spiral bound
- Attachments
-
- 20140430_01 Programming environment.JPG (118.54 KiB) Viewed 6875 times
- Mr. Kibernetik
- Site Admin
- Posts: 4786
- Joined: Mon Nov 19, 2012 10:16 pm
- My devices: iPhone, iPad, MacBook
- Location: Russia
- Flag:
Re: PDF-manual 3-8
Very nice photo!