No description
				
			
		| assets | ||
| compiler bootcamp | ||
| exercises | ||
| src | ||
| .gitignore | ||
| CMakeLists.txt | ||
| LICENSE | ||
| README.md | ||
ceilings
A code-along project in C in the vein of rustlings and especially ziglings. Failing test cases of almost-working C code for a student to correct in order to pass the test suite called by the executable, learning C in the process!
NOTE
This project is very much a WIP and quite transparently indebted to the ziglings project, which I'm following along with as I learn both languages.
Run
Ceilings is tested against a linux target and may not build properly on other platforms. Please open an issue if something doesn't work! It really helps me :)
Instructions
- Make a new folder called 
build - Ensure you have cmake, GNU Make, and C compiler installed
(these last two are often in a package called "build-essentials" if not "make" and "gcc" separately) - Open a terminal in the 
buildfolder and runcmake .. - Run 
makein that samebuildfolder - Pay attention to the error, and fix the file 
001_START_HERE.cin theexercisesfolder - Check your progress by running 
./appin thebuildfolder - Repeat steps 5 & 6 for each exercise until you complete Ceilings! :3
 
Roadmap
- Emulate rustlings file watcher and rustlings binary operation
 
