Linux
SB submited to TinyCoreLinux
Submitted by abelmora on Sun, 12/20/2009 - 19:48.Dear Chris,
I've just submited SB to TinyCoreLinux. I've made packages from Debian file -for GUI- and from sources -for CLI- Required information about authors and license have been included. I hope this helps to spread SB among users of TinyCore. Anyway I'm waiting your answer to a previous post for building the FLTK version.
Best regards,
fractal_fern.bas
Submitted by kepu on Fri, 12/18/2009 - 12:02.
CLS
iii=0
RANDOMIZE TIMER
'x = 60
'y = 60
WHILE iii<100000
r = RND
IF (r <= .01) THEN
a = 0: b = 0: c = 0: d = .16: e = 0: f = 0
ELSEIF r > .01 AND r <= .86 THEN
a = .85: b = .04: c = -.04: d = .85: e = 0: f = 1.6
ELSEIF r > .86 AND r <= .93 THEN
a = .2: b = -.26: c = .23: d = .22: e = 0: f = 1.6
ELSE
a = -.15: b = .28: c = .26: d = .24: e = 0: f = .44
END IF
newx = (a * x) + (b * y) + e
newy = (c * x) + (d * y) + f
x = newx
y = newy
PSET x*50+150, y*50, 2
SmallBASIC version 0.10.6 has been released
Submitted by chrisws on Tue, 12/15/2009 - 11:20.SmallBASIC version 0.10.6 is now available for both Linux and Windows.
The changes include:
- Fix for Matrix inversion bug
- Fix for Scientific notation bug
- Updated editor tool-bar
- Implemented a new log window which can also be used as the output window when working with text only programs.
Please report any bugs you happen to find. Enjoy !
SmallBASIC version 0.10.5 has been released
Submitted by chrisws on Fri, 09/04/2009 - 10:50.SmallBASIC version 0.10.5 is now available for both Linux and Windows.
Please report any bugs you happen to find. Enjoy !
SmallBASIC version 0.10.4 has been released (linux)
Submitted by chrisws on Wed, 08/05/2009 - 11:01.A new release of the Linux/FLTK build of SmallBASIC is now available.
The changes include:
- Updated DOFORM API (see previous forum comments).
- Updated memoryTest.bas and calc.bas samples showing how to use the updated DOFORM API
- Implemented the ability to set the editor font and syntax colors.
- Implemented a variant of the "ELIF" statement, "ELSE IF"
- The file open widget now displays sorted columns
- Updated internal variables to be 64 bits wide.
SB FLTK installation in LINUX
Submitted by kepu on Wed, 03/05/2008 - 07:58.
HI!
Just putting this here, if somebody else has 'problems' to install SmallBasic FLTK in Linux.
1.-download FLTK (if you don't have it already preinstalled) from
http://www.fltk.org/software.php (choose 'fltk-2.0.x-r6059.tar.gz')
-extract it to a directory and read intructions (readme file)
and do all according instructions
( I think it was 3 steps: ./configure.....make.... #makeinstall)
