mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-17 16:21:46 +03:00
c839c98c7d
Ideally we'd have a complete incremental build in CI, but that could be a bit fiddly to set up at the moment (updating bootstrap code might make it easier). This tests that the basic facilities work, though - there's a lot can go wrong even in a small test like this, trust me, I have made those mistakes :).
6 lines
46 B
Idris
6 lines
46 B
Idris
module Mod
|
|
|
|
export
|
|
fn : Nat -> Nat
|
|
fn x = S x
|