PDF-manual 3-8

Post Reply
User avatar
Dutchman
Posts: 848
Joined: Mon May 06, 2013 9:21 am
My devices: iMac, iPad Air, iPhone
Location: Netherlands
Flag: Netherlands

PDF-manual 3-8

Post by Dutchman »

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.
Last edited by Dutchman on Sat Jun 21, 2014 1:10 pm, edited 2 times in total.

User avatar
Mr. Kibernetik
Site Admin
Posts: 4782
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: PDF-manual 3-8

Post by Mr. Kibernetik »

Thank you very much :!:

User avatar
Mr. Kibernetik
Site Admin
Posts: 4782
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: PDF-manual 3-8

Post by Mr. Kibernetik »

I want to point on that RETURN command now can return value from function.

User avatar
Dutchman
Posts: 848
Joined: Mon May 06, 2013 9:21 am
My devices: iMac, iPad Air, iPhone
Location: Netherlands
Flag: Netherlands

Re: PDF-manual 3-8

Post by Dutchman »

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 ;)

User avatar
Mr. Kibernetik
Site Admin
Posts: 4782
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: PDF-manual 3-8

Post by Mr. Kibernetik »

For example factorial function:

Code: Select all

def faculty(n)
if n=1 then
  return 1
else
  return n*faculty(n-1)
end if
end def
or even shorter variant:

Code: Select all

def faculty(n)
if n=1 then return 1 else return n*faculty(n-1)
end def

User avatar
Dutchman
Posts: 848
Joined: Mon May 06, 2013 9:21 am
My devices: iMac, iPad Air, iPhone
Location: Netherlands
Flag: Netherlands

Re: PDF-manual 3-8

Post by Dutchman »

Thanks. Smart code :D
Documents have been adapted.

User avatar
Dutchman
Posts: 848
Joined: Mon May 06, 2013 9:21 am
My devices: iMac, iPad Air, iPhone
Location: Netherlands
Flag: Netherlands

Re: PDF-manual 3-8

Post by Dutchman »

The manual has now so many pages that it needs to be spiral bound :D
Attachments
20140430_01 Programming environment.JPG
20140430_01 Programming environment.JPG (118.54 KiB) Viewed 6753 times

User avatar
Mr. Kibernetik
Site Admin
Posts: 4782
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: PDF-manual 3-8

Post by Mr. Kibernetik »

Very nice photo!

Post Reply