replace deprecated ECL C names; revisions; integrate QML into the library ('qml-lisp.lisp' is obsolete now);

This commit is contained in:
polos 2021-03-13 16:03:09 +01:00
parent 8d3bc5234f
commit 799cc1de36
25 changed files with 358 additions and 1854 deletions

View file

@ -32,7 +32,8 @@ Item {
console.log(Lisp.call("x:join", ["11", "55"], ":"))
// (4) nested list arguments
// N.B: don't get fooled by the printed representation of the return value:
// N.B: don't get fooled by the printed representation of the return value
// (affects older Qt versions only):
// it's a nested JS array internally (".length" will give 3)
console.log(Lisp.call("list", [[1, 2, 3], ["a", "b", "c"], 4, 5], 6, [[7, 8], 9]))