13 lines
132 B
Agda
13 lines
132 B
Agda
module UnifyLit
|
|
|
|
import Prelude
|
|
|
|
test : 'x' ≡ 'x'
|
|
test = Refl
|
|
|
|
test2 : "foo" ≡ "foo"
|
|
test2 = Refl
|
|
|
|
test3 : 1 ≡ 1
|
|
test3 = Refl
|