html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div id="main">
<p id="header">SLOTH</p>
<textarea id="text"
placeholder="Good luck :p"
wrap="soft"
rows="20"
autocapitalize="off"
autocomplete="off"
autocorrect="off"
>coding sloth
coding sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth
coding sloth sloth sloth sloth sloth
coding sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth
coding sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth
sloth sloth sloth
sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth
coding sloth sloth sloth sloth sloth sloth sloth sloth
coding sloth sloth sloth sloth sloth
coding sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth
coding sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth
coding sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth
sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth sloth
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
body {
text-align: center;
}
#main {
position: absolute;
width: 100%;
height: 90%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#text {
border: 1px solid #999;
white-space: pre;
width: 80%;
}
#text:focus {
outline: none;
}
marquee {
position: absolute;
bottom: 0;
left: 0;
color: #999;
}
js
js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
alert("Check JS for a description on how to use this language\n\nIf everything is correct the code will be:\nalert('hello\\nworld')\nAnd the output will be:\nhello\nworld");
alert("It does support all JS functions, so don't be afraid to use one of those.\n\n∆Check the code of Slak for an interperter∆")
// Use 'coding' if you want a-z
// eg: coding sloth sloth == 'b'
// Use 'the' if you want 0-9
// eg: the sloth sloth sloth == '3'
// For these characters you use just 'sloth'
// eg: sloth sloth == "}"
var CHARS = [
"{", // 1 x sloth
"}", // 2 x sloth
"(", // 3 x sloth
")", // 4 x sloth
"[", // 5 x sloth
"]", // 6 x sloth
"+", // 7 x sloth
"-", // 8 x sloth
"*", // 9 x sloth
"/", // 10 x sloth
"\\", // 11 x sloth
"'", // 12 x sloth
" ", // 13 x sloth
];
BROWSER
Console
Run