1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-28 11:55:53 +00:00
QB64-PE/tests/compile_tests/const/const_sub.bas

25 lines
439 B
QBasic
Raw Normal View History

$CONSOLE:ONLY
CONST glob = 60
foo
baz
SYSTEM
' SUB/FUNCTIONs should be able to define their on CONST that are local to that SUB/FUNCTION
' They should also be able to access the global CONSTs
SUB foo()
CONST a = 20
CONST bar = a + 20 + glob
PRINT bar
END SUB
' Separate SUB/FUNCTIONs should be able to define CONST values with the same names
SUB baz()
CONST a = 40
CONST bar = a + 20 + glob
PRINT bar
END SUB