#include <iostream>
#include <chrono>
#include <random>
#include <ctime>

#include "row.hpp"
#include "row.cpp"
#include "sorting_algorithms.hpp"

using namespace std;

int main(){
	srand(time(0));

	uint32_t n=10;
	int  *b=new int[n];


	for (uint32_t i=0; i<n; i++){
		b[i]=rand()%100;
	}

	Row<int> *a=new Row<int>(b,10);
	bubble_sort(*a);
	cout << "Bubble sort test:" << *a <<endl;

	delete a;
	delete[] b;


return 0;
};
