Skip to content

Commit

Permalink
first
Browse files Browse the repository at this point in the history
  • Loading branch information
nullcoset committed Dec 16, 2024
1 parent 133e627 commit bcf7ebd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
project(hellotest)

add_executable(hellotest
hello.cpp
)

6 changes: 6 additions & 0 deletions src/hello.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include <iostream>

int main() {
std::cout << "Hi" << std::endl;
}

0 comments on commit bcf7ebd

Please sign in to comment.