code / nomsu

Lines6.6K Lua5.1K PEG1.3K make117
2 others 83
Markdown60 Bourne Again Shell23
(20 lines)
1 #!/usr/bin/env nomsu -V7.0.0
2 ###
3 This file defines upgrades from Nomsu <6.15.9 to 6.15.9
5 use "compatibility/compatibility"
7 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 upgrade action (assume $a == $b) to "6.15.9" as (assume ($a == $b))
10 upgrade action (assume $a != $b) to "6.15.9" as (assume ($a != $b))
11 upgrade action ($x to the nearest $r) to "6.15.9" as ($x, to the nearest $r)
12 upgrade action [ceil $x, ceiling $x] to "6.15.9" as ($x, rounded up)
13 upgrade action (floor $x) to "6.15.9" as ($x, rounded down)
14 upgrade action (for $x in $start to $stop $body) to "6.15.9" as
15 for $x in ($start to $stop) $body
17 upgrade action [
18 for $x in $start to $stop by $step $body
19 for $x in $start to $stop via $step $body
20 ] to "6.15.9" as (for $x in ($start to $stop by $step) $body)