Results 9 comments of Libor Čapák

hi, I’m just waiting for complete native api :) I’ll make emacs inferior-mode too (repl). Nice and fast scripting language, if you keep it simple.

something like this: ``` +++ new-gr/3rdparty/dukglue/detail_primitive_types.h 2017-09-05 07:36:18.259658669 +0200 @@ -5,6 +5,7 @@ #include "dukvalue.h" #include +#include #include #include // for std::shared_ptr @@ -157,6 +158,36 @@ } }; + //...

It helps when I put this build option in cmft.lua and cmft_cli.lua too. Thank you.

FYI: I have to use --useOpenCL false otherwise it crash. hw info: ``` ./cmft --printCLDevices CMFT info: Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz --clVendor Apple --deviceIndex 0 --deviceType cpu CMFT...

```Symbol's function definition is void: defstruct```

do you know emacs commint file?

comint, sorry. "socket REPL" is now known name?

Advantage? Running game with embedded js vm. Toying, scripting, debugging.

like this: ``` var net = require('net'); var server = net.createServer(function(socket) { socket.setEncoding('utf8'); socket.on('data', function(data) { var res = eval(data); socket.end(res.toString()); }); }); server.listen(8000); ``` and run-js localhost:8000 in emacs....