Hacker News new | ask | show | jobs
by Ao7bei3s 3140 days ago

  import random
  while True:
      print(random.choice("╱╲"), end="")
How's that for readability?
1 comments

That's cool, didn't realize HN would allow that.
Here's a smaller one:

python3 -c 'while True: print(__import__("random").choice("╱╲"), end="")'