Skip to content

Instantly share code, notes, and snippets.

View cactorium's full-sized avatar

Kelvin Ly cactorium

View GitHub Profile
@cactorium
cactorium / hello.cc
Last active October 17, 2016 02:41
Fix typo
// NOTE: if you are running in an IDE, you may need to add -std=c++11
// to the compiler settings for this to compile correctly.
// GCC (which is the most common compiler suite) defaults to using an older standard of
// C++, so it won't be able to understand all the awesomecool features we're using here
// until you tell it that you want to use them
//
// A line that starts with two slashes like this is a comment!
// They're ignored by the compiler, so you can write whatever you want in them
// They're mainly used for commenting code, to better describe what's happening
// in the code if it's complicated