12 lines
121 B
Plaintext
12 lines
121 B
Plaintext
type M : string -> integer
|
|
|
|
function entry : M
|
|
|
|
entry(s) := {
|
|
[
|
|
integer: x
|
|
]
|
|
x := 0;
|
|
return x;
|
|
}
|