cmake_minimum_required(VERSION 3.21)
project(cpp11)

set(CMAKE_CXX_STANDARD 11)

add_executable(cpp11 main.cpp Student.cpp Student.h funcArgs.h)
