kurz/std.qbl

31 lines
245 B
Plaintext
Raw Permalink Normal View History

2023-01-23 05:28:13 +01:00
function bool => str boolToStr
{
if
{
"true"
}
else
{
"false"
}
}
2023-07-28 03:01:13 +02:00
function int int => int %
{
divmod deq
}
function int int => int /
{
divmod req deq
2023-12-22 22:13:55 +01:00
}
function int => int decrement
{
1 -
}
function int => int increment
{
1 +
}