repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use a UBYTE rather than a BYTE for the buffer passed to FWriteChars(), since
[AROS.git]
/
test
/
helloworld.c
blob
6fb031e47ecca377705928b9d5f013ebe92759e0
1
/*
2
Copyright © 1995-96, The AROS Development Team. All rights reserved.
3
$Id$
4
5
Desc: most simple demo for AROS
6
Lang: english
7
*/
8
#include <stdio.h>
9
10
static const char
version
[] =
"$VER: helloworld 41.1 (14.3.1997)
\n
"
;
11
12
int
main
(
int
argc
,
char
**
argv
)
13
{
14
printf
(
"Hello, world
\n
"
);
15
return
0
;
16
}