ipso icon indicating copy to clipboard operation
ipso copied to clipboard

A functional scripting language.

Results 63 ipso issues
Sort by recently updated
recently updated
newest added

`test.ipso`: ``` test : () test = comp let prefix = if x then "📁 " else "📄 " in ``` Output: ``` $ ipso test.ipso thread 'main' panicked at...

bug

`test.ipso`: ``` test_1 : String test_1 = "📁 📄 " test_2 : String test_2 = ~ ``` Expected output: ``` $ ipso --check test.ipso test.ipso:5:4: error: expected one of: constructor,...

bug

The following should be allowed: ``` # test.ipso main : IO () main = comp bind mondayDate

feature