helanhalvan
helanhalvan
### Environment ### - Add the result of `rebar3 report` to your message: ``` $ rebar3 report compile Rebar3 report version 3.14.3 generated at 2021-02-18T11:27:49+00:00 ================= Please submit this along...
I am well aware that `null` is on it's way out of the language, so it can not be used now. This code: ``` class Main def main(args:[String]) : unit...
This program displays some very bad memory behaviour. Changing the `10` in the `a` array to a `11` is expected to not effect memory usage significantly, as the `Shared_data` should...
This is a minor nuisance as you can always just replace `_` with `some_really_long_string_nobody_will_use_as_var_name` for the same effect. ``` class Main { def main () : void { let a...
This code ``` class Main { def main() : void { let x = 1/0; print("bad"); } } ``` Will have different results based on what C implementation used. On...