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