erg/crates/erg_compiler/lib/std.d/Nat.d.er
2023-02-18 00:24:25 +09:00

13 lines
257 B
Python

.Nat: ClassType
.Nat.
'''
Execute `proc!` `self` times.
'''
'''erg
10.times! do!:
print! "hello"
print_hello!() = print! "hello"
10.times! print_hello!
'''
times!: (self: .Nat, proc!: () => NoneType) => NoneType