Merge remote-tracking branch 'base/master'
This commit is contained in:
commit
a6fb9594da
52 changed files with 32479 additions and 1 deletions
5
src/SConscript
Normal file
5
src/SConscript
Normal 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
8
src/hello.cc
Normal file
|
@ -0,0 +1,8 @@
|
|||
#include <iostream>
|
||||
|
||||
int
|
||||
main()
|
||||
{
|
||||
std::cout << "Hello world!" << std::endl;
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue