diff options
Diffstat (limited to '070text.mu')
-rw-r--r-- | 070text.mu | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/070text.mu b/070text.mu index 49317557..f7d5897b 100644 --- a/070text.mu +++ b/070text.mu @@ -1300,25 +1300,3 @@ scenario text-copy-out-of-bounds-2 [ 3:array:character <- [] ] ] - -def min x:number, y:number -> z:number [ - local-scope - load-ingredients - { - return-x?:boolean <- lesser-than x, y - break-if return-x? - return y - } - return x -] - -def max x:number, y:number -> z:number [ - local-scope - load-ingredients - { - return-x?:boolean <- greater-than x, y - break-if return-x? - return y - } - return x -] |