blob: 71b0543f51af000656645125a30cf044a1d3c85c [file] [log] [blame]
// Copyright 2012 The Emscripten Authors. All rights reserved.
// Emscripten is available under two separate licenses, the MIT license and the
// University of Illinois/NCSA Open Source License. Both these licenses can be
// found in the LICENSE file.
#include <iostream>
int main(int argc, char* argv[]) {
std::cout << "hello, world!" << std::endl;
return 0;
}