Page 1 of 1

PDF-manual 3-8

Posted: Tue Apr 29, 2014 7:32 am
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.

Re: PDF-manual 3-8

Posted: Tue Apr 29, 2014 8:58 am
by Mr. Kibernetik
Thank you very much :!:

Re: PDF-manual 3-8

Posted: Tue Apr 29, 2014 10:04 am
by Mr. Kibernetik
I want to point on that RETURN command now can return value from function.

Re: PDF-manual 3-8

Posted: Tue Apr 29, 2014 10:16 am
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 ;)

Re: PDF-manual 3-8

Posted: Tue Apr 29, 2014 10:34 am
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

Re: PDF-manual 3-8

Posted: Tue Apr 29, 2014 1:34 pm
by Dutchman
Thanks. Smart code :D
Documents have been adapted.

Re: PDF-manual 3-8

Posted: Wed Apr 30, 2014 6:02 pm
by Dutchman
The manual has now so many pages that it needs to be spiral bound :D

Re: PDF-manual 3-8

Posted: Wed Apr 30, 2014 7:04 pm
by Mr. Kibernetik
Very nice photo!