Skip to content

Instantly share code, notes, and snippets.

@digidigo
Created March 20, 2013 22:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save digidigo/5208934 to your computer and use it in GitHub Desktop.
Save digidigo/5208934 to your computer and use it in GitHub Desktop.
My very first program ever was on a PET computer and was written in basic. Here it is in ruby. What was yours?
while(1)
puts " /\\"
puts " / \\"
5.times do
puts " | |"
end
puts " __"
puts " / \\ "
puts " **"
puts " **"
20.times do
puts ""
sleep 0.5
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment