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
)
