This commit is contained in:
Aaron Shea 2018-12-11 23:10:40 +00:00 committed by GitHub
commit 218ddb1631
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
E.hx Normal file
View File

@ -0,0 +1,7 @@
class E {
static public function main():Void {
while(true) {
trace('e');
}
}
}