All Projects → Timu5 → BasicSharp

Timu5 / BasicSharp

Licence: MIT License
BASIC interpreter in C#

Programming Languages

C#
18002 projects
vba
158 projects

BasicSharp

Simple BASIC interpreter written in C#. Language syntax is modernize version of BASIC, see example below.

Example

print "Hello World"

let a = 10
print "Variable a: " + a

let b = 20
print "a+b=" + (a+b)

if a = 10 then
    print "True"
else
    print "False"
endif

for i = 1 to 10
    print i
next i

goto mylabel
print "False"

mylabel:
Print "True"
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].