Eeeee EE #53 eeee megaxlr/eeeeeeeeeeeeeeeeeeeeeeee

eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
This commit is contained in:
iliana weller 2018-12-07 19:52:49 -08:00 committed by GitHub
commit bcf22664b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 49 additions and 0 deletions

9
e.b Normal file
View File

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

13
e.c Normal file
View File

@ -0,0 +1,13 @@
#include <stdio.h>
int main()
{
for (;;) {
printf("e");
}
}
int on_exit()
{
return 'e';
}

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)