cmake_minimum_required(VERSION 3.20)
project(Lec1Coding C)

set(CMAKE_C_STANDARD 99)

add_executable(Lec1Coding src/first.c)
