mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 18:21:47 +03:00
11 lines
133 B
Idris
11 lines
133 B
Idris
|
import Language.Reflection
|
||
|
|
||
|
%default total
|
||
|
|
||
|
f : TTImp -> Elab Nat
|
||
|
f _ = pure 5
|
||
|
|
||
|
%language ElabReflection
|
||
|
|
||
|
x = %runElab quote 4 >>= f
|