perlawk
perlawk
How to set the lua side of a void argument in C? example: C side: cat libtest.c int five(void) { return 5; } lua side: so = require"alien" tst =...
The original comment of lua in nerdcommenter is only '--' But there is a multiline comment style: ``` --[[ This is multiline comments ]] ``` When I add is to...
There is a bug in the string#strip_margin methods The example given: "|def abc\n|xyz".strip_margin("|") # same string, not work but " |def abc\n |xyz".strip_margin("|") # => "def abc\nxyz" because in the...
When using the repl in iced-cs, just enter the following: five -> 5 A warning: DeprecationWarning: Calling an asynchronous function without callback is deprecated. After tracing back the source code,...
In the example: cindex.lua, when a function header like: int five(void); The code.db will not show anything about it. Here is my patch for the suspected bug: function processFunction(func) DBG('=>',...