13 lines
163 B
Plaintext
13 lines
163 B
Plaintext
(* TEST: [-asc -tc -cg -ir] *)
|
|
|
|
#include "std.alpha"
|
|
|
|
entry (arg) := {
|
|
[integer:x; integer:y]
|
|
|
|
y := 1;
|
|
x := 3;
|
|
y := x - y;
|
|
|
|
return y;
|
|
} |