summaryrefslogtreecommitdiff
path: root/Demos/callback/run_cheese.py
blob: f0feb3c3013cd01d4f76db6808467ef91ace1093 (plain)
1
2
3
4
5
6
import cheese

def report_cheese(name):
    print("Found cheese: " + name)

cheese.find(report_cheese)