blob: 44b363dfcdaf8fbb97dd31c12d19272a0bbad2a0 [file] [log] [blame]
/*
* Copyright 2008 The Native Client Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/*
* It can't get much simpler than this (uh, except for noop.c).
*/
#include <stdio.h>
void hello_world(void) {
printf("Hello, World!\n");
}
int main(int argc, char* argv[]) {
hello_world();
return 0;
}