1/* 2 * Copyright 2011 The Emscripten Authors. All rights reserved. 3 * Emscripten is available under two separate licenses, the MIT license and the 4 * University of Illinois/NCSA Open Source License. Both these licenses can be 5 * found in the LICENSE file. 6 */ 7 8#include <stdio.h> 9 10int main() { 11 puts("test\n"); 12 return 0; 13} 14 15