repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
test-6.cs
blob
a90e0bf966270516d7b76d501cbb7049fe741668
1
using
System
;
2
3
class
X
{
4
5
public static int
Main
()
6
{
7
Console
.
WriteLine
(
"From 0 to 9"
);
8
int
i
;
9
10
for
(
i
=
0
;
i
<
10
;
i
++)
11
Console
.
WriteLine
(
i
);
12
13
return
0
;
14
}
15
}