toaruos/userspace/tests/test-c++.c++
2014-06-07 23:13:29 -07:00

12 lines
262 B
C++

/* This file is part of ToaruOS and is released under the terms
* of the NCSA / University of Illinois License - see LICENSE.md
* Copyright (C) 2014 Kevin Lange
*/
#include <iostream>
using namespace std;
int main() {
cout << "hello world!\n";
return 0;
}