Sign in
chromium
/
chromium
/
src
/
a2fa993e901b58e36748540c21f3bad51187f87d
/
.
/
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
;
}