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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
test-5.cs
blob
431d1944477529e8da2842f882e2b0b48748aba1
1
using
System
;
2
3
class
X
{
4
5
public static int
Main
()
6
{
7
Console
.
WriteLine
(
"From 0 to 9"
);
8
9
for
(
int
i
=
0
;
i
<
10
;
i
++)
10
Console
.
WriteLine
(
i
);
11
12
return
0
;
13
}
14
}