View difference between Paste ID: CaCrNfNu and Y2Fr69ve
SHOW: | | - or go back to the newest paste.
1
local Logo = {
2-
  [[ __                                __   ]],
2+
  [[▒▒▒▒▒▒▒▒▒▒▒▒▒▒▄▄██████▄ ]],
3-
  [[|  \  /\  |\ | |\ | \ /    | |\ | /  `  ]],
3+
  [[▒▒▒▒▒▒▒▒▒▒▄▄████████████▄ ]],
4-
  [[|__/ /~~\ | \| | \|  |     | | \| \__, .]],
4+
  [[▒▒▒▒▒▒▄▄██████████████████ ]],
5-
  [[                                        ]],
5+
  [[▒▒▒▄████▀▀▀██▀██▌███▀▀▀████ ]],
6
  [[▒▒▐▀████▌▀██▌▀▐█▌████▌█████▌]],
7
  [[▒▒█▒▒▀██▀▀▐█▐█▌█▌▀▀██▌██████ ]],
8
  [[▒▒█▒▒▒▒████████████████████▌ ]],
9
  [[▒▒▒▌▒▒▒▒█████░░░░░░░██████▀ ]],
10
  [[▒▒▒▀▄▓▓▓▒███░░░░░░█████▀▀ ]],
11
  [[▒▒▒▒▀░▓▓▒▐█████████▀▀▒ ]],
12
  [[▒▒▒▒▒░░▒▒▐█████▀▀▒▒▒▒▒▒ ]],
13
  [[▒▒░░░░░▀▀▀▀▀▀▒▒▒▒▒▒▒▒▒]],
14
}
15
local mon = peripheral.wrap("back")
16
mon.setTextScale(1)
17
term.redirect(mon)
18
term.clear()
19
term.setCursorPos(1,1)
20
for i = 1, #Logo do
21
  print(Logo[i])
22
end