initial commit

This commit is contained in:
2025-11-26 15:20:54 +01:00
commit 1975059b1b
4 changed files with 34 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build/

16
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c17",
"cppStandard": "gnu++23",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}

9
CMakeLists.txt Normal file
View File

@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.16.0 FATAL_ERROR)
project(pl VERSION 0.0.1 LANGUAGES C CXX)
set(CMAKE_CXX_STANDARD 23)
set(SOURCES
src/main.cpp
)
add_executable(pl ${SOURCES})

8
src/main.cpp Normal file
View File

@ -0,0 +1,8 @@
#include <iostream>
#include <print>
int main(int argc, char** argv)
{
std::println("Hello, World!");
return 0;
}