repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-02-19 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
tests
/
test-6.cs
blob
b95d891b7c4179a7d2373563da6ee5b3cfb0037d
1
using
System
;
2
3
class
X
{
4
5
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
}