Frityet
Frityet
```lua local interface ISoundMaker makesound: function(ISoundMaker) end local record Animal is ISoundMaker species: string end function Animal:create(species: string): Animal return setmetatable({ species = species }, { __index = Animal })...
Apple clang is just an slightly modified version of LLVM clang, but LLVM clang is fully useable on macOS and is able to compile and run this project perfectly. Furthermore,...
### Xmake Version 2.7.9 ### Operating System Version and Architecture Darwin amrit-10.local 22.5.0 Darwin Kernel Version 22.5.0: Mon Apr 24 20:51:50 PDT 2023; root:xnu-8796.121.2~5/RELEASE_X86_64 x86_64 ```yaml ProductName: macOS ProductVersion: 13.4...
Adding the message at the top of the stack lets you know what failed
file: ```lua #!/usr/bin/env lua print "Hello" ``` Will fail at runtime, with `syntax error in bundled source code.`. Using #18 I can see the error is ```yaml [string "AOT Compiled...
Hello, I am trying to make it so when debugging with LuaJIT the JIT compiler is turned off, along with other optimisations, this is my launch file ```json { "configurations":...
> https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_prepareCallHierarchy
Some lua libraries have tables which have fields that can be read from, but not written to: ```lua local tbl = setmetatable({ _data = { a = 4 } },...