From 01c062ce8f6217b5dba2b9c6f1a94dc6433d6ade Mon Sep 17 00:00:00 2001 From: 0x4261756D Date: Sat, 23 Dec 2023 22:05:32 +0100 Subject: [PATCH] Add increment function to the standard library --- std.qbl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/std.qbl b/std.qbl index c50f622..58bda20 100644 --- a/std.qbl +++ b/std.qbl @@ -24,3 +24,7 @@ function int => int decrement { 1 - } +function int => int increment +{ + 1 + +}