Added e.rs, e.d and e.cr
@ -0,0 +1,3 @@
while true
puts "e"
end
@ -0,0 +1,8 @@
import std.stdio;
int main() {
for(;;) {
writefln("e");
}
return 0;