Skip to content

Instantly share code, notes, and snippets.

View ruifig's full-sized avatar

Rui Figueira ruifig

View GitHub Profile
@ruifig
ruifig / hello-world.cpp
Created August 26, 2016 15:43
Gist created by fiddle.jyt.io
#include <iostream>
#include <set>
int main ()
{
printf("Hell world\n");
std::set<std::string> s;
std::cout << "Adding 'Hello' and 'World' to the set twice" << std::endl;