Idris2/tests/idris2/with/with002/Temp.idr
2023-09-07 14:57:22 +01:00

10 lines
185 B
Idris

module Temp
import Data.List
foo : (l : List Int) -> String -> String
foo l "length" with (length l)
foo l "length" | 0 = "Zero"
foo l "length" | n = "Not Zero"
foo l s = "Other"