Idris2 icon indicating copy to clipboard operation
Idris2 copied to clipboard

A purely functional programming language with first class types

Results 306 Idris2 issues
Sort by recently updated
recently updated
newest added

These two functions are FFI-exported with the exact same type `Int -> PrimIO Int`, so I think it should be a reasonable expectation that their calling convention is the same....

- [x] I have read [CONTRIBUTING.md](https://github.com/idris-lang/Idris2/blob/main/CONTRIBUTING.md). - [x] I have checked that there is no existing PR/issue about my proposal. ## Summary As far as I can tell, `absurd` is...

Feature request

At present, Idris2 has a number of ways in which the user can compile a given source file (e.g `X.idr`). For example, the user can write a package file, which...

Feature request
cli: options
backends

The following program crashes with scheme exception "attempt to apply non-procedure 0": ``` bug : Int -> Bool bug a = let f = \y => case y == a...

status: confirmed bug
implem: laziness

# Steps to Reproduce ``` idris2 module Test namespace Foo record R where -- Comment this line and the following Use* doesn't compile data A : Type where B :...

# Summary `Exception: variable LibrariesC-45TextC-45Lexer-any is not bound` ## Reproduction 1. build idris2 from source, with `opts = "--inc chez"` in `idris2.ipkg`. 2. make install once more. 3. build fails:...

Installation Issue

I haven't tested it with yaffle (wrong laptop atm) but this is concerning: ```idris %default total boom : Nat === List () -> List () boom = \ eq =>...

status: confirmed bug
implem: pattern-matching
implem: scheme eval

- [x] I have read [CONTRIBUTING.md](https://github.com/idris-lang/Idris2/blob/main/CONTRIBUTING.md). - [x] I have checked that there is no existing PR/issue about my proposal. ## Summary ![image](https://github.com/idris-lang/Idris2/assets/54838975/5e3c865c-7462-4885-ba5d-1f7534a2f901) Add source link for each declaration like...

Feature request

# Steps to Reproduce Tested on commit 6729fa8c8. Code: ```idris data Fin : Nat -> Type where FZ : Fin (S n) FS : Fin n -> Fin (S n)...

Idris2 version (HEAD as of the time of raising the issue): ``` $ idris2 --version Idris 2, version 0.2.1-df4c454f4 ``` # Steps to Reproduce Here is the code: ``` module...

status: confirmed bug
implem: scope
language: where