Works on: Windows 10 | Windows 8.1 | Windows 8 | Windows 7 | Windows 2012 SHA1 Hash: 01b856bb6b531afce434fd5b4f7d16f16aa142ee Size: 274.39 KB File Format: exe
Rating: 1.956521739
out of 5
based on 23 user ratings
Publisher Website: External Link Downloads: 302 License: Free
Yabasic is a free software by Marc-Oliver Ihm and works on Windows 10, Windows 8.1, Windows 8, Windows 7, Windows 2012.
You can download Yabasic which is 274.39 KB in size and belongs to the software category Coding languages and Compilers. Yabasic was released on 2010-12-13 and last updated on our database on 2017-02-28 and is currently at version 2.763.
Thank you for downloading from SoftPaz! Your download should start any moment now. It would be great if you could rate and share:
Rate this software:
Share in your network:
Yabasic Description
Yabasic application was developed to be a traditional basic interpreter. It understands most of the typical basic-constructs, like goto, gosub, line numbers, read, data or string-variables with a trailing $. But on the other hand, Yabasic implements some more advanced programming-constructs like subroutines or libraries (but not objects).
Yabasic puts emphasis on giving results quickly and easily; therefore simple commands are provided to open a graphic window, print the graphics or control the console screen and get keyboard or mouse information.
The example below opens a window, draws a circle and prints the graphic:
- open window 100,100
- open printer
- circle 50,50,40
- text 10,50,"Press any key to get a printout"
- clear screen
- inkey$
- close printer
- close window