Christophe de Dinechin
Christophe de Dinechin
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.
In the context of kata containers, I am trying to figure out how to write code that works both for legacy and unified mode. I did not find any good...
Clarify that device nodes need not be under `/dev`, but that the runtime need to be informed of all the device nodes that are used by the container. Virtual-machine based...
In the [Linux device specification](https://github.com/opencontainers/runtime-spec/blob/main/config-linux.md#devices), all the examples indicate devices created under `/dev`. However, it is not specified if this is necessary or mandated. We recently ran across a test...