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 /aisa/aisa.cpp | |
| download | issim-e94cf0292758b8af5744c2331403580e1792acf7.tar.xz | |
Initial commit.
Diffstat (limited to 'aisa/aisa.cpp')
| -rw-r--r-- | aisa/aisa.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/aisa/aisa.cpp b/aisa/aisa.cpp new file mode 100644 index 0000000..0c806de --- /dev/null +++ b/aisa/aisa.cpp | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | #include <iostream> | ||
| 2 | |||
| 3 | #include "aisa/aisa.h" | ||
| 4 | |||
| 5 | namespace aisa { | ||
| 6 | |||
| 7 | void do_something() | ||
| 8 | { | ||
| 9 | std::cout << "Hello, world!\n"; | ||
| 10 | } | ||
| 11 | |||
| 12 | } | ||
