revert beta hacks (sorry); fix comment in 'qml.lisp'

This commit is contained in:
polos 2021-06-10 22:28:45 +02:00
parent c3d4050dc6
commit 1758101cf2
6 changed files with 10 additions and 17 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
}