Modern C++ course overloading example.
Overloading
To build overloading project, open "Terminal" and type following lines:
mkdir build && cd build
cmake ..
start overloading.slnSelect overloading project and type Ctrl+F5 to build and run it.
mkdir build && cd build
cmake .. -G "Xcode"
open ./overloading.xcodeprojSelect overloading project and type Cmd+R to build and run it.
mkdir build && cd build
cmake ..
cmake --build . --config Debug
./overloading- Launch Visual Studio Code.
- Select
File/Open Folder...menu. - Select
overloadingfolder and open it. - Build and Run
overloadingproject.
