13 lines
193 B
Plaintext
13 lines
193 B
Plaintext
(* TEST: [-asc -tc -cg -ir] *)
|
|
|
|
#include "std.alpha"
|
|
|
|
entry (arg) := {
|
|
[Boolean: c; Boolean: d; integer: result]
|
|
|
|
c := true;
|
|
d := !c;
|
|
|
|
result := printBoolean(d);
|
|
return 1;
|
|
} |