summaryrefslogtreecommitdiff
path: root/aisa/aisa.cpp
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-06-23 17:46:19 -0700
committerJulian Blake Kongslie2022-06-23 17:46:19 -0700
commite94cf0292758b8af5744c2331403580e1792acf7 (patch)
tree984ffe5c6e50e0f42dcc5216e03b1cc9160e7cff /aisa/aisa.cpp
downloadissim-e94cf0292758b8af5744c2331403580e1792acf7.tar.xz
Initial commit.
Diffstat (limited to 'aisa/aisa.cpp')
-rw-r--r--aisa/aisa.cpp12
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
5namespace aisa {
6
7 void do_something()
8 {
9 std::cout << "Hello, world!\n";
10 }
11
12}