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
2009-01-24 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-360.cs
blob
1439be8fa8ab83dc0f61fdf320ec6627a410fc38
1
public class
Application
2
{
3
public static void
Main
(
string
[]
args
)
4
{
5
if
(
true
)
6
{
7
string
thisWorks
=
"nice"
;
8
System
.
Console
.
WriteLine
(
thisWorks
);
9
}
10
else
11
{
12
string
thisDoesnt
=
"not so"
;
13
System
.
Console
.
WriteLine
(
thisDoesnt
);
14
}
15
}
16
}
17