eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee

eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
This commit is contained in:
eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee 2018-11-30 12:11:35 +01:00
parent 05f22b11c0
commit 2336fa5965
6 changed files with 36 additions and 0 deletions

9
e.b Normal file
View File

@ -0,0 +1,9 @@
+++++ +++++
[
>
+++++ +++++
<-
]
>+
[.]

9
e.cc Normal file
View File

@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main()
{
for(;;) cout << "e";
return 0;
}

8
e.java Normal file
View File

@ -0,0 +1,8 @@
public class e {
public static void main(String[] args) {
while(true) {
System.out.print("e");
}
}
}

1
e.js Normal file
View File

@ -0,0 +1 @@
while (true) console.log('e');

2
e.php Normal file
View File

@ -0,0 +1,2 @@
<?php
while (true) echo "e";

7
e.py Normal file
View File

@ -0,0 +1,7 @@
import sys
try:
while True:
sys.stdout.write('e')
except KeyboardInterrupt:
sys.exit(0)