Initial Course

This commit is contained in:
David Gil de Gómez Pérez
2026-08-11 17:40:36 +03:00
commit 9aed1d1d86
202 changed files with 3420 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
add_course_exercise(
NAME hello_world
MODULE 01_fundamentals
STANDARD 17
SOURCES
src/hello_world.cpp
test/hello_world_test.cpp
)
add_course_exercise(
NAME variables_and_types
MODULE 01_fundamentals
STANDARD 17
SOURCES
src/variables_and_types.cpp
test/variables_and_types_test.cpp
)
add_course_exercise(
NAME operators
MODULE 01_fundamentals
STANDARD 17
SOURCES
src/operators.cpp
test/operators_test.cpp
)
add_course_exercise(
NAME basic_io
MODULE 01_fundamentals
STANDARD 17
SOURCES
src/basic_io.cpp
test/basic_io_test.cpp
)