+ "val y : Int = 2 * x \n"
+ "val z : Str = \"Hello \" + \"World\" \n"
+ "val w = (x,y,z) \n"
+ "w\n";
BytecodeValue res = runTest(s);
assertEquals(res.toString(), "(4,8,Hello World)");
String[] names = { "x", "y", "z", "w" };
List<BytecodeValue> tuple = new ArrayList<BytecodeValue>();
tuple.add(new BytecodeInt(4));
tuple.add(new BytecodeInt(8));