https://github.com/ryym/smlsharp
https://github.com/ryym/smlsharp
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ryym/smlsharp
- Owner: ryym
- License: mit
- Created: 2019-11-19T12:29:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-19T13:37:12.000Z (over 5 years ago)
- Last Synced: 2025-01-17T15:47:03.372Z (4 months ago)
- Language: Dockerfile
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[smlsharp]: https://www.pllab.riec.tohoku.ac.jp/smlsharp/
A Docker image hosting the compiler and REPL of [SML#][smlsharp] on Ubuntu 16.04.
## Usage
### REPL
```bash
$ docker run --rm -it ryym/smlsharp
SML# 3.4.0 (2017-08-31 19:31:44 JST) for x86_64-pc-linux-gnu with LLVM 3.7.1
# 1 + 1;
val it = 2 : int
```### Compile
```bash
$ docker run --rm -v "`pwd`":/work -w work ryym/smlsharp -o hello hello.sml
```