Merge pull request #1 from eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeee

Update fork
This commit is contained in:
Blake Burgess 2018-12-08 15:12:59 -05:00 committed by GitHub
commit a83292348e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
32 changed files with 158 additions and 3 deletions

1
e.R Normal file
View File

@ -0,0 +1 @@
while(T)cat("e")

17
e.asm Normal file
View File

@ -0,0 +1,17 @@
section .text
global _start
_start:
mov rax, 1
mov rdi, 1
mov rsi, msg
mov rdx, len
loop:
syscall
jmp loop
section .data
msg: db "e"
len: equ $ - msg

1
e.bf Normal file
View File

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

3
e.cljc Normal file
View File

@ -0,0 +1,3 @@
(ns e)
(while true (print "e"))

7
e.dart Normal file
View File

@ -0,0 +1,7 @@
import 'dart:io';
main(List<String> args) {
while (true) {
stdout.write('e');
}
}

5
e.f90 Normal file
View File

@ -0,0 +1,5 @@
program e
do
write(*, "(a)", advance="no") "e"
enddo
endprogram e

2
e.fs Normal file
View File

@ -0,0 +1,2 @@
: E 1 0 DO ." e" 0 +LOOP ;
E ;

BIN
e.gz Normal file

Binary file not shown.

12
e.idr Normal file
View File

@ -0,0 +1,12 @@
e : IO ()
e = do
putChar 'e'
e
ee : IO ()
ee = do
disableBuffering
e
main : IO ()
main = ee

1
e.lisp Normal file
View File

@ -0,0 +1 @@
(loop (print "e"))

3
e.m Normal file
View File

@ -0,0 +1,3 @@
while 1
printf('e');
end

2
e.ml Normal file
View File

@ -0,0 +1,2 @@
let rec eee e = Printf.printf "e"; eee ();;
let () = eee ();;

1
e.nim Normal file
View File

@ -0,0 +1 @@
while true: echo 'e'

11
e.pas Normal file
View File

@ -0,0 +1,11 @@
program e;
var
e:integer;
begin
e := 1;
while true do
begin
writeln('e');
end;
end.

1
e.pro Normal file
View File

@ -0,0 +1 @@
e :- write(e), e.

3
e.ps1 Normal file
View File

@ -0,0 +1,3 @@
while ($true) {
Write-Host "e" -NoNewLine;
}

4
e.rb
View File

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

4
e.red Normal file
View File

@ -0,0 +1,4 @@
Red []
while [1][
print "E"
]

7
e.rs Normal file
View File

@ -0,0 +1,7 @@
#![feature(main)]
#[main]
fn e() {
loop {
print!("e");
}
}

15
e.s Normal file
View File

@ -0,0 +1,15 @@
.globl _start
.text
_start:
movq $1, %rax
movq $1, %rdi
movq $e, %rsi
movq $e_len, %rdx
syscall
jmp _start
.data
e:
.ascii "e"
e_len = . - e

3
e.scala Normal file
View File

@ -0,0 +1,3 @@
object e extends App {
Stream.continually("e").foreach(print)
}

2
e.sh
View File

@ -1,2 +1,2 @@
#!/bin/sh
echo e
yes e | tr -d '\n'

3
e.sqf Normal file
View File

@ -0,0 +1,3 @@
while { true } do {
diag_log format["e"];
};

3
e.svg Normal file
View File

@ -0,0 +1,3 @@
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="9" height="9">
<text x=".4" y="8" style="font-size:12px;font-style:normal;font-weight:normal;fill:black;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans" xml:space="preserve"><tspan x=".4" y="8">e</tspan></text>
</svg>

After

Width:  |  Height:  |  Size: 409 B

3
e.swift Normal file
View File

@ -0,0 +1,3 @@
while true {
print("e")
}

4
e.toml Normal file
View File

@ -0,0 +1,4 @@
# e eeeee eeee eeee eee eeee ee eeee E
[E]
e = "e"

3
e.v Normal file
View File

@ -0,0 +1,3 @@
module e;
always #1 $write("e");
endmodule

10
e.vbs Normal file
View File

@ -0,0 +1,10 @@
Function e
e = MsgBox("ee ee?",51,"e")
If e = 6 Then
e = MsgBox("e!",64,"e")
ElseIf e = 7 Then
e = MsgBox("EE!",16,"E!")
Else
e = MsgBox("e..",32,"e")
End If
End Function

19
e.x68 Normal file
View File

@ -0,0 +1,19 @@
*-----------------------------------------------------------
* Title : E
* Written by : George Tzikas <tzikas97@gmail.com>
* Date : 2018_12_08
* Description: E
*-----------------------------------------------------------
ORG $400400
MESSAGE DC.B 'E', 0
COUNT DC.W $100
START ORG $400410
MOVE.W COUNT, D1
LEA MESSAGE, A1
*Use #13 for CR, LF
LOOP MOVE.B #14, D0
TRAP #15
DBRA D1, LOOP
END START

1
e.yml Normal file
View File

@ -0,0 +1 @@
e: e

10
eeeeee.py Normal file
View File

@ -0,0 +1,10 @@
"""EEe ee eeeee eee""
eee = 1
eeee = 1000000000
ee = ['e' for e in range(eee, eeee)]
for e in ee:
print(e)
# eeee

Binary file not shown.

Before

Width:  |  Height:  |  Size: 349 KiB

After

Width:  |  Height:  |  Size: 418 KiB