Fridtjof Siebert
Fridtjof Siebert
Take this example ``` a(X,Y type, x X, y Y) is say "$X $Y" a i32 _ (option 42) (option -12) |> type_of |> say ``` this should produce an...
try this: ``` > rm -rf build/generated/doc > make build/doc/reference_manual/fuzion_reference_manual.pdf mkdir -p build/generated/doc cd . && git log modules/base/src/encodings/unicode/data.fz | grep --extended-regexp "^Date:" | head | sed "s-Date: -:UNICODE_VERSION: -g"...
The following code is ok, it is showing the whole string literal as the error location ``` > FUZION_DISABLE_ANSI_ESCAPES=true ../clean/fuzion.5/build/bin/fz -e 'ignore i32 "abcdunitefgt"' command line:1:12: error 1: Incompatible types...
This code ``` _ := p-> for i in 1.. until true then "." else "@" ``` produces a strange error that contains type `**error**`. ``` > ../clean/fuzion.5/build/bin/fz mandel_error.fz :...
Try this code that declares `myf` as its function type ``` myf : Function bool i32 is q(f myf) => f.call 1 |> say q a->a>0 ``` this produces this...