Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 926 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 926 Bytes

Nature of Code, in C

A new version of Nature of Code (original site) has been released on github.
https://github.com/nature-of-code/noc-book-2023

This repo collates my C implementations of the book's exercises and lessons.
Minimal dependencies with no OOP, containers, complex build systems, or other convoluted nonsense.

Libraries

Building

Builds are generated via dead-simple .bat files.

  • .\build.bat <whatever>.c to get an executable from that .c file.
  • .\debug.bat <whatever>.c to generate .pdb files and launch into RemedyBG.

Current Tools

  • VSCode for editing
  • RemedyBG for debugging
  • clang for compiling (installed via MSYS2)
  • mingw for C headers (installed via MSYS2)
  • Windows 10