12 lines
262 B
C++
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;
|
|
}
|