diff options
| author | Julian Blake Kongslie | 2022-06-23 17:46:19 -0700 |
|---|---|---|
| committer | Julian Blake Kongslie | 2022-06-23 17:46:19 -0700 |
| commit | e94cf0292758b8af5744c2331403580e1792acf7 (patch) | |
| tree | 984ffe5c6e50e0f42dcc5216e03b1cc9160e7cff /main.cpp | |
| download | issim-e94cf0292758b8af5744c2331403580e1792acf7.tar.xz | |
Initial commit.
Diffstat (limited to '')
| -rw-r--r-- | main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..6b7b0f4 --- /dev/null +++ b/main.cpp | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | #include <iostream> | ||
| 2 | |||
| 3 | #include "aisa/aisa.h" | ||
| 4 | #include "git-tag.h" | ||
| 5 | |||
| 6 | int main(int argc, const char *argv[]) | ||
| 7 | { | ||
| 8 | std::cout << "Version " << GIT_TAG << "\n"; | ||
| 9 | aisa::do_something(); | ||
| 10 | return 0; | ||
| 11 | } | ||
