#include "tests/std/io.toc"; Foo ::= struct { x : int; N ::= 5; S ::= "hello!"; f ::= fn() []char { S } } main ::= fn() { puts(Foo.f()); } main();