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

View file

@ -1,3 +1,6 @@
$if Truncate = undefined then
$let Truncate = defined
Function Truncate~%% (value&)
Truncate~%% = (value& > 0) * (((value& < 256) * value&) + ((value& > 255) * 255))
End Function
$end if