Idris2/tests/idris2/basic/interpolation003/Test.idr
2023-09-07 14:57:22 +01:00

16 lines
278 B
Idris

import Data.String
Interpolation Bool where
interpolate True = "TT"
interpolate False = "FF"
Interpolation Nat where
interpolate Z = "0"
interpolate (S n) = "S \{n}"
Interpolation Integer where
interpolate = show
test : String
test = "\{2}\{True}: \{True}\{True}"