elfe icon indicating copy to clipboard operation
elfe copied to clipboard

Extensible Language for Everyday

Results 8 elfe issues
Sort by recently updated
recently updated
newest added

Currently, some examples contain code like this: ``` every 1s, writeln "Hello world" ``` The notation `1s` is the number `1` with the postfix `s`. I'm concerned that reserving short...

Currently, `Var := Var + 1` works, but `Var += 1` does not. Creating the `+=` operator runs into an issue with assignment very similar to the one described in...

For loops cannot be defined presently, because there is no longer a way to pass down a variable name to be updated. Here is a naive definition: ``` for Var...

Right now, ELIoT only runs correctly at -O0, which is fully interpreted mode. Here are the other evaluation mode that need to be built / repaired: -O1 generates a byte...

Currently, ELIoT makes is quite easy to create independent processes. But it would be interesting to add threading support. A lot of pre-enablement code for thread safety has been put...

Make it easy to support the GPIO on Raspberry Pi. Could take advantage of [WiringPi](http://wiringpi.com). Problem is that while WiringPi is not that large, it would still double the size...

Currently, Eliot does not support IPv6, which appears indispensable in an "Internet of Things" context.

Years ago FIPA (Foundation Intelligent Physical Agents) had something like this. Security was a a huge concern. A language with designed to be agent is a great idea. Now the...