P3PCGTC4ZITFU44PE5G6ITA5KRJPDENP66Y7YLQY3RQIFPUNOWYAC
NVOQWGKABCBXTLJZ5DJIDBLXZ4FCKEQRFTEXXEAIISCY3VAPHERAC
D4FEFHQCSILZFQ5VLWNXAIRZNUMCDNGJSM4UJ6T6FDMMIWYRYILQC
CZ75J5XVD2PTAPK67BUL4QY2RDBGRLITYX3SOLXUJ2UFD5CCVRCQC
FS2ITYYHBLFT66YUC3ENPFYI2HOYHOVEPQIN7NQR6KF5MEK4NKZAC
WVKFFN6FAJVKUL6NGAOWSS33WFD63GPOPSLDQ7JT4WM27KV7H65QC
MISEW25VIMXQ6ID37VQ365KAMPQ5O4COYWEIK6M4JXKIG7L5DVSQC
L2HMMGZPLQTMRPSHKIZZA77KOKKNVREUOWNSUKTIMS2GPMLJL4BAC
DMCRN3CEDMPBFFQA37BSGYQCUVLFDETXSS3NFJ3U4K6XSFPPDC2AC
You must have a client app running that can be communicated with and that
you're trying to modify; otherwise driver.love will hang until it finds one,
and might need to be force-quit. (Also, bad things will happen if you have
_more than a single_ client app running. Or if you close one app and open
another without restarting the driver. Just always open the app and then the
driver. If you close the app, close the driver.)
You must have a ["freewheeling"](http://akkartik.name/post/roundup22) client
app running that can be communicated with and that you're trying to modify;
otherwise driver.love will hang until it finds one, and might need to be
force-quit. (Also, bad things will happen if you have _more than a single_
client app running. Or if you close one app and open another without
restarting the driver. Just always open the app and then the driver. If you
close the app, close the driver.)
Each definition lives in a blue box. You have to follow a specific Lua syntax
where the name of the definition comes first: `foo = function(...) ... end`
rather than `function foo(...) ... end`. The driver treats the first word in a
definition is its name.
Functions that start with `test_` are tests, and run any time you hit `f4`.
The driver will highlight them in green or red when they fail.
* You have to follow a specific Lua syntax where the name of the definition
comes first: `foo = function(...) ... end` rather than `function foo(...)
... end`. The driver treats the first word in a definition is its name. For
similar reasons, a definition can't start with a comment. Put comments
within functions or after them.