(print [thing])

This commit is contained in:
2020-11-19 16:13:40 -07:00
parent 70917e5295
commit 8588bfc8b7

View File

@@ -78,4 +78,9 @@ class Prelude {
} }
} }
} }
public static function print(v:Any) {
trace(v);
return v;
}
} }