Hazen Johnson

Results 7 comments of Hazen Johnson

I've duplicated this error on OSX using the following script: ``` HAI 1.3 I HAS A counter ITZ 0 I HAS A number ITZ 0 IM IN YR loop counter...

It looks like the code might not be doing quite what you think it's doing, though, admittedly, it'd be nice if lci reported the errors more intuitively. First, `I HAS...

As a small note, future is incompatible with Windows MinGW builds because it relies on Readline and the Linux Sockets libraries. I've tried building using replacements like [linenoise](https://github.com/antirez/linenoise) and [winsock2](https://docs.microsoft.com/en-us/windows/desktop/WinSock/windows-sockets-start-page-2),...

This sounds a lot like you're not working with the future branch. `CAN HAS STDIO?` is only available in the future branch, and you'll need to rebuild the project once...

Is this as simple as making a new error message in [error.c](https://github.com/justinmeza/lci/blob/master/error.c) and using it here: https://github.com/justinmeza/lci/blob/6762b724361a4fb471345961b4750657783aeb3b/interpreter.c#L1531-L1537 or did you have something more fancy in mind? What kind of error...

From what I've read of the code, no, this interpreter does not yet have a well-defined API to integrate with other C applications. It's primarily designed as a terminal application...

TLDR: lci doesn't seem to handle Bukkit inheritance quite right. There's a possible workaround (see below). ## Explanation Interesting behavior indeed. I've dug into this a bit and here's what...