Parser warnings
func foo(n) { say n }
fo(42) # will get interpreted as `42.fo`[INFO] `fo` is parsed as a prefix method-call at script.sf line 2func foo(n) { say n }
fo.call(42)File : test.sf
Line : 2
Error: variable <fo> is not declared in the current scope
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
fo.call(42)
^
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[?] Did you mean: fooLast updated