-- main.mcl -- class c1 { $x = "world" test "t1" {} $f1 = func($y) { "hello" + $x } } include c1 as i1 test $i1.f1("whatever") {} -- OUTPUT -- Vertex: test[helloworld] Vertex: test[t1]