erg/crates/erg_compiler/lib/core.d/Nat.d.er
2024-01-04 17:26:26 +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