mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 09:12:34 +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
|