SML# environment on GNU/Linux x86_64 and i386.
2.5K
This docker image hosts the compiler & the repl of SML# on GNU/Linux x86_64. The SML# interactive shell is executed in /smlsharp .
Run this image with no arguments, smlsharp is executed in interactive mode.
$ sudo docker run -it --rm smlsharp:3.6.0
SML# 3.6.0 (2020-05-29 09:58:49 JST) for x86_64-unknown-linux-gnu with LLVM 9.0.0
# 1;
val it = 1 : int
# "SML#";
val it = "SML#" : string
Run this image with any arguments, smlsharp is executed in batch mode.
$ sudo docker run -it --rm -v `pwd`:/smlsharp/src smlsharp:3.6.0 smlsharp src/main.sml -o src/main
$ ./main
Content type
Image
Digest
Size
281.5 MB
Last updated
over 5 years ago
docker pull eldesh/smlsharp