aboutsummaryrefslogtreecommitdiffstats
path: root/106/main.cpp
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov2070@gmail.com>2024-11-25 19:18:06 +0300
committerjustanothercatgirl <sotov2070@gmail.com>2024-11-25 19:18:06 +0300
commite3f07b566dc996bd49f245c91e9c3d09adc37bae (patch)
tree4c5c8f927da0e67845caee0dc215ce93af3f29bc /106/main.cpp
parent8237f82ebd2299addc6dec837d5f850cc5fd1b5c (diff)
parent6d4163c2dd3d54d20335b3fa1528a817cdbe8cd6 (diff)
Merge remote-tracking branch 'origin/master'
Diffstat (limited to '106/main.cpp')
-rw-r--r--106/main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/106/main.cpp b/106/main.cpp
new file mode 100644
index 0000000..c83e5b5
--- /dev/null
+++ b/106/main.cpp
@@ -0,0 +1,13 @@
+#include "include/praktable.hpp"
+
+using table = prak::table<double>;
+
+void ex1(void) {
+ table t;
+ t.print();
+}
+
+int main() {
+ ex1();
+ return 0;
+}