You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-5Lines changed: 14 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,22 @@ minimal object-oriented language with integrated semantic state
5
5
access. The interpreter can be used to examine the state with SPARQL,
6
6
SHACL and OWL queries.
7
7
8
+
The language is in development, for a general description, examples and tutorial to SMOL, we refer to [its webpage](https://www.smolang.org).
8
9
9
-
This branch in particular contains the case study for modeling geological processes.
10
10
11
-
To run the experiment contained in the article _"Semantically Triggered Qualitative Simulation of a Geological Process"_, run the following commands (tested on a Linux machine)
11
+
To compile and run the SMOL REPL, run
12
12
```
13
-
chmod +x ./execute_case.sh
14
-
./execute_case.sh
13
+
./gradlew build
14
+
java -jar build/libs/smol.jar --help
15
15
```
16
16
17
-
For a general description and tutorial to SMOL, we refer to [its webpage](www.smolang.org).
17
+
To run the SMOL REPL pre-compiled using docker, run the following command:
18
+
```
19
+
docker run -it --rm -v "$PWD":/root/smol ghcr.io/smolang/smol:latest
20
+
```
21
+
22
+
To compile and run the SMOL REPL inside docker, run the following commands:
0 commit comments