erg/doc/EN/syntax/08_procedure.md

373 B

Procedures

Procedures are necessary when dealing with mutable objects, but having a mutable object as an argument does not necessarily make it a procedure. Here is a function takes a mutable object (not procedure).

peek_str s: Str! = log s

Previous | Next