stacktor/main.cpp
2024-07-01 21:21:54 +02:00

33 lines
542 B
C++

// @BAKE g++ $@ -o stacktor.out -ggdb -O0
#include <stdio.h>
#include "stacktor.hpp"
void print_stractor(stacktor<int> &s) {
fputs("[ ", stdout);
/*
for (auto i : s) {
printf("%d ", i);
}
*/
for (int i = 0; i < s.size(); i++) {
printf("%d ", s.get(i));
}
fputc(']', stdout);
}
signed main() {
// It MUST be on the heap
stacktor<int> * s = new stacktor<int>();
s->push_back(10);
s->push_back(12);
s->push_back(6);
print_stractor(*s);
puts("");
return 0;
}