cmake_minimum_required(VERSION 3.28)
project(07_heaps)

set(CMAKE_CXX_STANDARD 20)

add_executable(07_heaps main.cpp
)
