feat: add version header

This commit is contained in:
Michael Mandl 2023-10-11 20:49:32 +02:00
parent 6260ce47dc
commit 0d43936a61
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
3 changed files with 23 additions and 12 deletions

View file

@ -1,6 +1,10 @@
#include <cstdlib>
#include <iostream>
#include "version.h"
int main(int argc, char **argv) {
std::cout << "Hello" << std::endl;
return 0;
std::cout << "Hello, world! Version " << VERSION << std::endl;
return EXIT_SUCCESS;
}