Jakub T. Jankiewicz
Jakub T. Jankiewicz
It was year ago, probably the error from the title.
There are some inconsistencies, I think the best is to provides both APIs for both say and think. Here is was testing the APIin broser at [CodePen](https://codepen.io/jcubic/pen/wvKbLPP)
I've just tested both `say` and `think` at [CodePen](https://codepen.io/jcubic/pen/wvKbLPP?editors=1010) and in browser it works with longer names options. They eyes are changed.
It's been almost a year and no even a single comment. Do you accept PR?
Alternative is: ```ruby error "something" ```
Hello world Example: ```ruby echo* "Hi, What is your name?", 50 let name = ask "name? " echo "Hello $name, nice to meet you." ``` REPL example: ```ruby def repl()...
Function to get a list of files in a directory: ```javascript async function list_directory(user, repo, directory) { const url = `https://api.github.com/repos/${user}/${repo}/git/trees/master`; directory = directory.split('/').filter(Boolean); const dir = await directory.reduce(async (acc,...
Without Open-RPC the service object should be a proxy. Maybe Open-RPC is not needed at all.
TODO: test with: ```ruby import Object let service = rpc* "https://...." config {"completion" => Object.keys(service)} while true do let cmd = parse ask "rpc> " let ret = service[cmd.name](*cmd.args) if...
It would be nice to create some functions of the library in Gaiman itself. ```ruby def range(start, stop, step) if not stop then stop = start start = 0 end...