This repository has been archived on 2025-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
kurz/std.qbl
2023-07-28 03:01:13 +02:00

21 lines
165 B
Plaintext

function bool => str boolToStr
{
if
{
"true"
}
else
{
"false"
}
}
function int int => int %
{
divmod deq
}
function int int => int /
{
divmod req deq
}