ok icon indicating copy to clipboard operation
ok copied to clipboard

🆗 - a strongly-duck-typed language.

Results 12 ok issues
Sort by recently updated
recently updated
newest added

The following does not work because the parser doesn't understand immediatly invoked closures: ``` assert(func() {}() raise error.Error) ```

enhancement

The following causes a stack overflow: ``` if json[i] == '{' or json[i] == '}' or json[i] == '[' or json[i] == ']' or json[i] == ':' { ``` However,...

bug

The parser seems to think the string is not terminated in the case of: ``` assert("" == "\{\"\}") ```

bug

The following code causes the parser into an infinite loop: ``` if a == string { ```

bug

`ok test -help` shows the general help instead of the test specific help.

bug
help wanted
good first issue

This causes the parser into an infinite loop: ``` assert(output == [ "DEBUG debug message", "INFO info message", "WARN warning message", "ERROR error message", "FATAL fatal message", ]) ``` Without...

bug

The follow panics: ``` print("{time.Now().String()} {strings.PadLeft(level, " ", 5)} {message}") ``` Whereas the more verbose version does not: ``` level = strings.PadLeft(level, " ", 5) print("{time.Now().String()} {level} {message}") ``` See...

bug

@elliotchance @gitter-badger Have you planned to add REPL?

enhancement

Cos, sin, tan etc have not been implemented because they are not available in the apd library. I would rather not estimate these with floating-point. If you know how to...

enhancement
help wanted