Merge remote-tracking branch 'base/master'

This commit is contained in:
Eryn Wells 2016-02-26 22:47:14 -08:00
commit a6fb9594da
52 changed files with 32479 additions and 1 deletions

5
src/SConscript Normal file
View file

@ -0,0 +1,5 @@
# SConscript
# vim: set ft=python:
# Eryn Wells <eryn@erynwells.me>
Program('hello', ['hello.cc'])

8
src/hello.cc Normal file
View file

@ -0,0 +1,8 @@
#include <iostream>
int
main()
{
std::cout << "Hello world!" << std::endl;
return 0;
}