Skip to content

Instantly share code, notes, and snippets.

View wmcnamara's full-sized avatar
🇨🇦
Binding Vertex Buffers

Weston McNamara wmcnamara

🇨🇦
Binding Vertex Buffers
View GitHub Profile
@wmcnamara
wmcnamara / RecursiveCounting
Last active January 29, 2022 18:44
Recursively counts from min to max
#include <iostream>
void countFrom(int min, int max)
{
if (min > max)
return;
std::cout << min << '\n';
countFrom(min + 1, max);