turbolist/main.cpp

12 lines
172 B
C++
Raw Normal View History

2024-08-27 09:32:53 +02:00
// g++ main.cpp -o main
#include<cstdio>
#include<cstdint>
#include"turbolist.h"
int main() {
TurboList list(4);
printf("sizeof(int)> %d\n", sizeof(int));
return 0;
}