Q: Ask Constance if we need some bread
A: send-msg `find constance` Do we need some bread?

Q: Send a message to Greg to figure out if things are ready for Wednesday.
A: send-msg `find greg` Is everything ready for Wednesday

Q: Ask Ilya if we're still having our meeting this evening
A: send-msg `find ilya` Are we still having a meeting this evening?

Q: Contact the ski store and figure out if I can get my skis fixed before I leave on Thursday
A: send-msg `find ski store` Would it be possible to get my skis fixed before I 
leave on Thursday?

Q: Thank Nicolas for lunch
A: send-msg `find nicolas` Thank you for lunch!

Q: Tell Constance that I won't be home before 19:30 tonight — unmovable meeting.
A: send-msg `find constance` I won't be home before 19:30 tonight. I have a 
meeting I can't move.

Q:
English: open file "hello world.txt"
Bash: f = open("hello world.txt")

English: read the first 10 lines from f
Bash: f.readlines(10)

English: close f
Bash: f.close()

English: open google.com in the browser
Bash: browser.open_new("<http://google.com>")

English: