Orginalet

cern2

Apr 20th, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. local Logo = {
  2. [[ _____ ___________ _ _ ]],
  3. [[/ __ \| ___| ___ \ \ | |]],
  4. [[| / \/| |__ | |_/ / \| |]],
  5. [[| | | __|| /| . ` |]],
  6. [[| \__/\| |___| |\ \| |\ |]],
  7. [[ \____/\____/\_| \_\_| \_/]],
  8. }
  9. local mon = peripheral.wrap("top")
  10. mon.setTextScale(1)
  11. term.redirect(mon)
  12. term.clear()
  13. term.setCursorPos(1,1)
  14. for i = 1, #Logo do
  15. print(Logo[i])
  16. end
  17. term.restore()
Advertisement
Add Comment
Please, Sign In to add comment