repo.or.cz
/
vala-lang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove obsolete ref modifier and callback keyword
[vala-lang.git]
/
tests
/
test-021.vala
blob
0bb38e353986dfeeebce068c63cef0b13eada9a6
1
using
GLib
;
2
3
class
Maman
.
Foo
{
4
static
int
main
(
string
[]
args
) {
5
stdout
.
printf
(
"String + operator: 1"
);
6
7
stdout
.
printf
(
" 2"
+
" 3"
);
8
9
string
s
=
" 4"
;
10
s
+=
" 5"
;
11
12
stdout
.
printf
(
"%s"
,
s
);
13
14
stdout
.
printf
(
" 6
\n
"
);
15
16
return
0
;
17
}
18
}