1
1
Fork 0
mirror of https://github.com/boxgaming/qbjs.git synced 2024-09-20 04:24:45 +00:00
qbjs/samples/include/test.bas
2022-04-15 14:47:03 -05:00

15 lines
181 B
QBasic

Export GetStuff As GetThings
Export DoStuff
Dim foo
foo = "somthing"
Function GetStuff
GetStuff = "got the stuff"
End Function
Sub DoStuff
Print "do the stuff"
End Sub