Sign in
chromium
/
chromium
/
src
/
3e90c35ae400d604792ada28362fbdbbe0933cc5
/
.
/
tools
/
gn
/
tutorial
/
hello_world.cc
blob: 6f7acfdaceb0d2aaec56ed2e88862f5bcbee2abd [
file
]
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include
<stdio.h>
int
main
()
{
printf
(
"Hello, world.\n"
);
return
0
;
}