Skip to content

Commit

Permalink
Tweak doc
Browse files Browse the repository at this point in the history
  • Loading branch information
alxest committed Oct 6, 2022
1 parent 6f76342 commit edcda8f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,11 @@ To evaluate this artifact, we propose the following steps:
have also setup [public chat room](https://discord.gg/jQezqzJZ) to
accommodate collaboration with others.
5. Check that the development supports extraction of examples to
OCaml, which can actually be executed. Specifically, run the
following commands in the project root directory.
OCaml, which can actually be executed. The script below runs "echo"
example (in the tech report) which takes (scanf) integers
indefinitely, and when you put `-1`, it will print the integers you
entered so far in a reverse order. You can run the scripts as
follows in the project root directory.
- "cd ./extract; ./run.sh; cd .." extracts and runs examples
written in EMS (abstractions and implementation of Echo, etc)
using the extraction mechanism of Interaction Trees.
Expand Down
2 changes: 1 addition & 1 deletion imp/compiler_extract/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ mv echo_main.s bin/echo_main.s
mv client.s bin/client.s
gcc -m64 -no-pie -o bin/echo_all bin/stack.s bin/echo.s bin/echo_main.s bin/client.s bin/print.s bin/scan.s

echo "Run program: echo example (on the technical report)"
echo "Run program: echo example (on the technical report)."
#read input
bin/echo_all
# echo "(Echo) Input integers, -1 to stop:"
Expand Down

0 comments on commit edcda8f

Please sign in to comment.