SdlBasic is a programming language created in 2002.
#2649on PLDB | 22Years Old |
SdlBasic is a multiplatform interpreter for BASIC, using the SDL libraries. Its interpreter core is based on wxBasic. The interpreter can be very useful for people who are familiar with ANSI-BASIC interpreters and are curious or needing SDL library features on their coding development. Read more on Wikipedia...
Function swap( a, b )
tmp = a
a = b
b = tmp
End Function
v1=10
v2=20
print v1, v2
swap( v1, v2 )
print v1, v2
Feature | Supported | Example | Token |
---|---|---|---|
Print() Debugging | ✓ |