Add increment function to the standard library

This commit is contained in:
0x4261756D 2023-12-23 22:05:32 +01:00
parent 90d67867cc
commit 01c062ce8f
1 changed files with 4 additions and 0 deletions

View File

@ -24,3 +24,7 @@ function int => int decrement
{
1 -
}
function int => int increment
{
1 +
}