Skip to content

Instantly share code, notes, and snippets.

@AJFaraday
Created March 7, 2012 10:42
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 AJFaraday/1992470 to your computer and use it in GitHub Desktop.
Save AJFaraday/1992470 to your computer and use it in GitHub Desktop.
Ascii screensaver (draft 1)
a = []
bool = true
loop do
puts a.to_s
bool ? a.concat(['a']) : a.delete_at(0)
sleep 0.1
if rand > 0.95
bool ? bool = false : bool = true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment