José Antonio Riaza Valverde
José Antonio Riaza Valverde
Fixed. It was a bug due to changing the default value of the `quoted` writing option to `false`. TODO: At the moment, term and goal expansion only looks for predicates...
No, there is no CSV library available in Tau Prolog. However, you can use the `js` package to call JavaScript functions from Prolog, so you can use a node.js package:...
Have you tried the version of Node.js? You can do a simple script in Node.js for running queries from the command line. ```javascript var pl = require( "tau-prolog" ); var...
Mmm... Could you write the test cases into files?
Hi @triska. Sorry for the delayed response. The following script creates a simple REPL that will allow you to execute goals as you do in your video. ```javascript var readline...
I think it's a good idea. Also, it doesn't seem like a difficult change. Have you implemented it?
Sorry for the delay. I guess you've been testing this for [your video](https://www.youtube.com/watch?v=YnUOxsiSYfk) about cryptography, so maybe I'm pretty late. Anyway, I'll take a look at it in case there's...
You'll have to define your own versions of arithmetic predicates for your big integers, because making existing predicates compatible involves modifying many parts of the core. You can represent your...
I think it's a good option to put `BigInt` by default in the environments that have it available (which seems to be the whole universe except Internet Explorer). But first...
Not yet. I'm currently working on the IO builtin predicates for both browser and Node.js (#41, #59). Thanks for the suggestion, I have CLP on my TODO list.