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

16 lines
181 B
QBasic
Raw Normal View History

2022-04-15 19:47:03 +00:00
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