KathyReid / super-acme-software

GNU General Public License v3.0
1 stars 1 forks source link

Infrastructure for a helpful counter #10

Open SamBackwell opened 3 years ago

SamBackwell commented 3 years ago

[participating in the exercise to win a hypothetical T-shirt] Found this great snippet for getting a counter going if you want to index how many worlds you have "hello"-ed

global i i = 0

def get_counter(): global i i += 1 return i