9 lines
113 B
Plaintext
9 lines
113 B
Plaintext
(* type string : 1 -> character *)
|
|
type M : string -> integer
|
|
|
|
function entry : M
|
|
|
|
entry(s) := {
|
|
return 0;
|
|
}
|