fix comment in 'qml.lisp'

This commit is contained in:
polos 2021-06-10 22:20:08 +02:00
parent 1695e9fc36
commit c3d4050dc6
6 changed files with 23 additions and 12 deletions

View file

@ -23,9 +23,9 @@ int main(int argc, char* argv[]) {
EQL::addObject(new Test(main), "*test*", true); // 'define-qt-wrappers'
EQL::eval("(load \"test.lisp\")"); // will start a REPL
app.processEvents(); // needed for 'qlater' in 'test.lisp'
EQL::eval("(load \"test.lisp\")"); // will start a REPL
app.processEvents(); // needed for 'qlater' in 'test.lisp'
return 0; // no 'app.exec()' because of REPL
return 0; // no 'app.exec()' because of REPL
}