Skip to content

Latest commit

 

History

History
34 lines (31 loc) · 1.19 KB

README.md

File metadata and controls

34 lines (31 loc) · 1.19 KB

Usage

Exec program from stdin

$ docker run --rm -it lmntal/lmntal

Then write your LMNtal program to stdin, and put C-d.

Exec from file

Create .lmn file containing LMNtal program.

$ cd #where program exists
$ docker run --rm -itv $PWD:/mnt slim [options] /mnt/program.lmn

or

$ cat program.lmn | docker run --rm -i lmntal #RT(runtime) mode
$ cat program.lmn | docker run --rm -i lmntal sh -c 'lmntal --stdin-lmn --slimcode --hl-opt | slim --nd --hl -' #MC(model checking) mode

or

$ cd #where program exists
$ docker rum --rm -itv $PWD:/mnt bash

Then bash appears, enjoy running lmntal and slim!

Components

Tags

LMNtal Information

For information about LMNtal, visit official website.