Merge pull request #121 from axusis/eeeeeeeeeeeeeeeeeeeeeeee

Added e.rs, e.d and e.cr
This commit is contained in:
LinuxMercedes 2018-12-08 14:16:27 -06:00 committed by GitHub
commit eb261e00c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

3
e.cr Normal file
View File

@ -0,0 +1,3 @@
while true
puts "e"
end

8
e.d Normal file
View File

@ -0,0 +1,8 @@
import std.stdio;
int main() {
for(;;) {
writefln("e");
}
return 0;
}