Merge pull request #1 from eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeee
Update fork
This commit is contained in:
commit
a83292348e
|
|
@ -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
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
import 'dart:io';
|
||||||
|
|
||||||
|
main(List<String> args) {
|
||||||
|
while (true) {
|
||||||
|
stdout.write('e');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
program e
|
||||||
|
do
|
||||||
|
write(*, "(a)", advance="no") "e"
|
||||||
|
enddo
|
||||||
|
endprogram e
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
e : IO ()
|
||||||
|
e = do
|
||||||
|
putChar 'e'
|
||||||
|
e
|
||||||
|
|
||||||
|
ee : IO ()
|
||||||
|
ee = do
|
||||||
|
disableBuffering
|
||||||
|
e
|
||||||
|
|
||||||
|
main : IO ()
|
||||||
|
main = ee
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
let rec eee e = Printf.printf "e"; eee ();;
|
||||||
|
let () = eee ();;
|
||||||
|
|
@ -0,0 +1,11 @@
|
||||||
|
program e;
|
||||||
|
|
||||||
|
var
|
||||||
|
e:integer;
|
||||||
|
begin
|
||||||
|
e := 1;
|
||||||
|
while true do
|
||||||
|
begin
|
||||||
|
writeln('e');
|
||||||
|
end;
|
||||||
|
end.
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
#![feature(main)]
|
||||||
|
#[main]
|
||||||
|
fn e() {
|
||||||
|
loop {
|
||||||
|
print!("e");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -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
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
object e extends App {
|
||||||
|
Stream.continually("e").foreach(print)
|
||||||
|
}
|
||||||
|
|
@ -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 |
|
|
@ -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
|
||||||
|
|
@ -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
|
||||||
|
|
@ -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
|
||||||
BIN
eeeeeeee.jpeg
BIN
eeeeeeee.jpeg
Binary file not shown.
|
Before Width: | Height: | Size: 349 KiB After Width: | Height: | Size: 418 KiB |
Loading…
Reference in New Issue