Volumes/apps/main.cpp

9 lines
169 B
C++
Raw Normal View History

2024-07-07 17:32:34 +02:00
#include <iostream>
2024-07-07 20:42:39 +02:00
#include "Block/block.h"
2024-07-07 17:32:34 +02:00
int main(int argc, char **argv) {
std::cout << "Hello, world!" << std::endl;
2024-07-07 20:42:39 +02:00
Volumes::Block block;
2024-07-07 17:32:34 +02:00
return 0;
}