precompile checks

This commit is contained in:
visionmercer 2022-09-19 01:27:48 +02:00
commit 3edb188921
22 changed files with 458 additions and 9 deletions

5
min.bm
View file

@ -1,3 +1,6 @@
$if Min = undefined then
$let Min = defined
FUNCTION Min (num1, num2)
Min = ((num1 < num2) * -num1) + ((num2 <= num1) * -num2)
END FUNCTION
END FUNCTION
$end if