14 lines
204 B
Plaintext
14 lines
204 B
Plaintext
(* TEST: [-asc -tc -cg -ir] *)
|
|
|
|
#include "std.alpha"
|
|
|
|
entry (arg) := {
|
|
[integer:x; integer:y; integer: result]
|
|
|
|
x := 24;
|
|
y := 3;
|
|
y := x / y;
|
|
|
|
result := printInteger(y);
|
|
return y;
|
|
} |