Sign in
chromium
/
chromium
/
src
/
205191a32c9db91062c5342e901b2da2d67a49e5
/
.
/
tools
/
gn
/
tutorial
/
hello_world.cc
blob: 6f7acfdaceb0d2aaec56ed2e88862f5bcbee2abd [
file
] [
log
] [
blame
]
// 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
;
}