1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-08-04 16:30:25 +00:00
QB64-PE/tests/compile_tests/declare_library_header/test-compile-base.bas
2023-04-25 09:48:08 -04:00

12 lines
242 B
QBasic

$CONSOLE:ONLY
' This location is relative to the source file, not QB64-PE or the location
' QB64-PE was run from.
DECLARE LIBRARY "fastmath"
FUNCTION Fast_Sqrt&(BYVAL val AS LONG)
END DECLARE
value = Fast_Sqrt&(2000)
print value;
SYSTEM