https://github.com/wenkokke/agda-exec-tc
A repository with examples of using the system call primitive execTC.
https://github.com/wenkokke/agda-exec-tc
Last synced: 3 months ago
JSON representation
A repository with examples of using the system call primitive execTC.
- Host: GitHub
- URL: https://github.com/wenkokke/agda-exec-tc
- Owner: wenkokke
- Created: 2020-06-05T10:09:21.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-05T10:22:15.000Z (almost 5 years ago)
- Last Synced: 2025-01-07T21:25:27.006Z (5 months ago)
- Language: Agda
- Size: 1.95 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Examples of execTC!
A repository with examples of using the system call primitive execTC.To run these examples, you need to use the [exec-tc][^exec-tc] branch of Agda, and create a `~/.agda/executables` file, which lists the paths to all executables you want Agda to have access to. For instance, to run the first example, [echo.agda](src/echo.agda), you need to add the following to `~/.agda/executables`:
```bash
/bin/echo
```We currently have these exciting examples:
- [echo.agda](src/echo.agda): Hello, World! An example which calls `echo` during type checking!
[^exec-tc]: https://github.com/agda/agda/tree/exec-tc