1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-08 14:55:12 +00:00
QB64-PE/tests/compile_tests/declare_library/test.bas

10 lines
130 B
QBasic
Raw Normal View History

$CONSOLE:ONLY
DECLARE LIBRARY
FUNCTION isdigit&(BYVAL c AS LONG)
END DECLARE
value = isdigit&(ASC("2"))
print value;
SYSTEM