Skip to content

Instantly share code, notes, and snippets.

View amittaigames's full-sized avatar

Jonah amittaigames

View GitHub Profile
/*
MAKE FLAGS: g++ -std=gnu++0x ./bdf-cli-render.cpp
Name Tyler Beatty
Started 2015-03-02
Last modified 2015-03-04
Final Project
bdf-cli-render.cpp
input:
@anneomcl
anneomcl / reverse_linked_list.cpp
Last active June 28, 2017 22:36
TheHappieCat: Reversing Linked Lists
// Example program
#include <iostream>
#include <string>
struct Node {
int data;
Node* next;
};
Node* create_node(int node_data){