Li Jin
Li Jin
Currently, in the CMakeLists.txt file, only the library file named `libluajit.a` or `libluajit.so` will be matched and stored in the variable `LUA_LIBRARIES` for build linking. You can try renaming or...
The issue arises because the sample code is meant to showcase the syntax of Yuescript, not to serve as a fully functional example. To make it runnable, you'll need to...
OK, the `.yue` extention should get mentioned in the docs. And I'll consider making this overview sample to be runnable.
Thank you for reporting this issue. I haven't specifically tested YueScript with MinGW, but the MSVC builds seem to work correctly with the provided sample codes. Additionally, the command `yue...
Can you provide the code in the `test.yue` file? I still can not reproduce this crash on my machine. Have you installed the [vcredist_x64](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170) patch as the MSVC runtime for...
Apologies for the delay—I thought I had already replied to this issue. The simplest way to resolve this is to add either nil or return as the last line of...
Speaking of concise syntax, I'm considering leveraging a Lua parser to determine whether the user’s code is an expression or a statement. This shouldn't require much effort. Once that's in...
Made a new commit supporting using Lua inserter macro to insert either expression or statement. ```moonscript macro foo = -> code: "tb:func(123)", type: "lua" f = -> x = $foo\bar...
I think it would be better to set up a workflow by reusing your [luapack](https://github.com/Le0Developer/luapack) project for packaging, rather than implementing everything directly in the YueScript repository. We could potentially...
Thank you for your thoughtful and detailed post! It’s great to see your interest in exploring how YueScript could enhance your TiddlyWiki projects. Let me address your questions and provide...