P3PCGTC4ZITFU44PE5G6ITA5KRJPDENP66Y7YLQY3RQIFPUNOWYAC NVOQWGKABCBXTLJZ5DJIDBLXZ4FCKEQRFTEXXEAIISCY3VAPHERAC D4FEFHQCSILZFQ5VLWNXAIRZNUMCDNGJSM4UJ6T6FDMMIWYRYILQC CZ75J5XVD2PTAPK67BUL4QY2RDBGRLITYX3SOLXUJ2UFD5CCVRCQC FS2ITYYHBLFT66YUC3ENPFYI2HOYHOVEPQIN7NQR6KF5MEK4NKZAC WVKFFN6FAJVKUL6NGAOWSS33WFD63GPOPSLDQ7JT4WM27KV7H65QC MISEW25VIMXQ6ID37VQ365KAMPQ5O4COYWEIK6M4JXKIG7L5DVSQC L2HMMGZPLQTMRPSHKIZZA77KOKKNVREUOWNSUKTIMS2GPMLJL4BAC DMCRN3CEDMPBFFQA37BSGYQCUVLFDETXSS3NFJ3U4K6XSFPPDC2AC You must have a client app running that can be communicated with and thatyou'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 openanother without restarting the driver. Just always open the app and then thedriver. If you close the app, close the driver.)
You must have a ["freewheeling"](http://akkartik.name/post/roundup22) clientapp 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 beforce-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 withoutrestarting the driver. Just always open the app and then the driver. If youclose the app, close the driver.)
Each definition lives in a blue box. You have to follow a specific Lua syntaxwhere the name of the definition comes first: `foo = function(...) ... end`rather than `function foo(...) ... end`. The driver treats the first word in adefinition 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 definitioncomes first: `foo = function(...) ... end` rather than `function foo(...)... end`. The driver treats the first word in a definition is its name. Forsimilar reasons, a definition can't start with a comment. Put commentswithin functions or after them.