Add decrement to the standard library

This commit is contained in:
0x4261756D 2023-12-22 22:13:55 +01:00
parent 8478b10210
commit 1beec6190e
1 changed files with 6 additions and 1 deletions

View File

@ -18,4 +18,9 @@ function int int => int %
function int int => int /
{
divmod req deq
}
}
function int => int decrement
{
1 -
}