Skip to content
Snippets Groups Projects
Commit 2c2972eb authored by Evy Storozhenko's avatar Evy Storozhenko
Browse files

added example code

parent c3b69e95
No related branches found
No related tags found
No related merge requests found
# CMake
/.cache
/build
\ No newline at end of file
cmake_minimum_required(VERSION 3.0.0)
project(bs-tutorial-ssh LANGUAGES C VERSION 1.0.0)
add_executable(main
${PROJECT_SOURCE_DIR}/src/main.c
)
\ No newline at end of file
#include <stdio.h>
int main() {
printf("hey there, World ^^\n");
return 0;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment