Skip to content

Instantly share code, notes, and snippets.

@ethanshine1234
Last active October 5, 2016 07:55
Show Gist options
  • Save ethanshine1234/a8006fcd0c3bb7da09076cb6aa62ad7a to your computer and use it in GitHub Desktop.
Save ethanshine1234/a8006fcd0c3bb7da09076cb6aa62ad7a to your computer and use it in GitHub Desktop.
stjlol-ES-strings
from time import sleep
import random
health=10
print(health)
damage=random.random()
damage=10*damage
print(int(damage))
sleep(1)
health = health - damage
print(int(health))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment