6 lines
83 B
Text
6 lines
83 B
Text
|
|
inductive S
|
|
| mk : List S → String → S
|
|
|
|
def f (s : String) : S :=
|
|
⟨[], s⟩
|