mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 01:01:59 +03:00
5e9a90bd97
* [ fix ] semantic highlighting in IDE mode Bring back (?) highlighting of goals * [ debug ] better logging: add length * [ test ] turns out lengths are not needed!
11 lines
171 B
Idris
11 lines
171 B
Idris
module Holes
|
|
|
|
nats : List Nat
|
|
nats = 2 :: 1 :: 0 :: []
|
|
|
|
goal : (n : Nat) -> Holes.nats === ?a
|
|
goal n = ?prf
|
|
|
|
goal2 : (xs : List Nat) -> map S xs = ?lgjgk
|
|
goal2 xs = ?prf2
|