Has anyone else heard of this? (I discovered it around v0.2)
It's yet another variation of BASIC, created be MicroSoft, I tried it out (v0.7), and within the first 10 minutes, I though "This is so damn cool.".
It works right out of the box, and is very powerful (microsoft claims you can make a SmallBASIC compiler with SmallBASIC itself). The IDE is extremely friendly and simple. A new feature of SmallBASIC called "Graduate" is able to translate your SmallBASIC code into VisualBASIC.
Take a look at this 5 line program (from their 69 page manual, which acts more like a tutorial book).
What it does that every 10 seconds, it replaces your current desktop picture with one from Flicker with the tag "Mountains".
You have got to try this out.
http://www.smallbasic.com/
I wish I had this when I first learned programming.
It's yet another variation of BASIC, created be MicroSoft, I tried it out (v0.7), and within the first 10 minutes, I though "This is so damn cool.".
It works right out of the box, and is very powerful (microsoft claims you can make a SmallBASIC compiler with SmallBASIC itself). The IDE is extremely friendly and simple. A new feature of SmallBASIC called "Graduate" is able to translate your SmallBASIC code into VisualBASIC.
Take a look at this 5 line program (from their 69 page manual, which acts more like a tutorial book).
Code:
For i = 1 To 10
pic = Flickr.GetRandomPicture("mountains")
Desktop.SetWallPaper(pic)
Program.Delay(10000)
EndFor
What it does that every 10 seconds, it replaces your current desktop picture with one from Flicker with the tag "Mountains".
You have got to try this out.
http://www.smallbasic.com/
I wish I had this when I first learned programming.
Last edited: