Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_fuzzing
/
d7d521f51091584f1a1b04ed7d16c5fa315dc13c
/
.
/
hello_world.cc
blob: 2ef2da877fa1d8713822e092518da6e5823a866d [
file
] [
log
] [
blame
]
//This is an example file that will be replaced with the actual fuzz target rule functionality.
#include
<iostream>
int
main
(
int
argc
,
char
**
argv
)
{
std
::
cout
<<
"hello world!"
<<
std
::
endl
;
return
0
;
}