#include "std/io.toc"; f ::= fn(x :: ..) int { total := 0; for a := x { total += a as int; } total }; main ::= fn() { puti(f(1,2,3)); puti(f(1,2,3,4)); puti(f(1,2,3,5,6)); puti(f(1,2,3,1,2)); }; main();