Welcome to the official repository for in-class code examples for CISP 1010. This repository contains the code written and discussed during lectures. Use it as a reference to reinforce your understanding of object-oriented programming concepts in C++ and other material covered in class.
- Provide access to code written live during class
- Help you review syntax, problem-solving strategies, and idiomatic C++ usage
- Offer a baseline for your own experimentation and practice
To make your own copy of this repository under your GitHub account:
- Click the Fork button at the top-right of this page.
- Choose your GitHub account as the destination.
- GitHub will create a copy of this repository under your username.
You now have your own version you can edit freely.
To work with your fork:
- Navigate to your forked repository on GitHub.
- Click the Code button and choose "Codespaces > Create codespace on main".
- GitHub will launch an online development environment in your browser.
git clone https://github.com/gymmyp1/CISP1010-Fall2025-Examples.git
cd REPO_NAME
As I add more examples to the original repo, you’ll want to keep your fork updated.
git remote add upstream https://github.com/gymmyp1/CISP1010-Fall2025-Examples.git
git fetch upstream
git merge upstream/main
If you’re using Codespaces, open a terminal and run the above commands there.
This repository is licensed under the MIT License, which means:
- You are free to use, copy, modify, and share the code.
- You are not required to credit me (though it’s appreciated!).
- This code is provided as-is, with no warranty.
See the LICENSE file for full details.
Happy coding!