kurz/std.qbl

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
}