aboutsummaryrefslogtreecommitdiffstats
path: root/tempalte/main.cpp
blob: 27862348dce02321d441b023acc2e604c9f6a3eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>

#include "include/praktable.hpp"

using table = prak::table<f64>;
using f64p = prak::pvalue<f64>;
using f64v = std::vector<f64>;
using vecarg = const std::vector<f64> &;
using argvec = const std::vector<f64> &;

void ex1(std::string file) {
	table t(file);
}

int main() {
	ex1("data");	
	return 0;
}