Blog 2019/9/9
<- previous | index | next ->
Elk has a very fast start-up time, even on old hardware.
Attached is the install script I came up with.
Try it out:
$ echo '(display "Hello, world!\n")' > /tmp/hello.scm
$ elk -l /tmp/hello.scm
Hello, world!
I've also attached a Dockerfile. Try it out:
$ docker build -t elk .
$ docker run -it --rm elk
> (display "Hello, world!")
Hello, world!
Don't forget to alias elk="rlwrap elk"
.