growl/std.grr
2026-01-22 11:56:01 -03:00

11 lines
201 B
Text

def when { [] if }
def unless { swap when }
def bi { [keep] dip call }
def tri { [[keep] dip keep] dip call }
def times {
if: over 0 =
[drop drop]
[swap over >r >r call r> 1 - r> times];
}