diff options
author | justanothercatgirl <sotov@twistea.su> | 2024-11-25 19:17:17 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2024-11-25 19:17:17 +0300 |
commit | 6d4163c2dd3d54d20335b3fa1528a817cdbe8cd6 (patch) | |
tree | 1f52a9afff1a8b24479ab1b868890409c340ea10 /106/main.cpp | |
parent | fcf77faf19dcb9d75b7842ec7138551bd73418cf (diff) |
added 106 template
Diffstat (limited to '106/main.cpp')
-rw-r--r-- | 106/main.cpp | 13 |
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; +} |