About
Contact
QtCreator
KDevelop
Solarized
1
int
__attribute__
((
fastcall
))
func
(
int
a
,
int
b
,
int
c
,
int
d
) {
2
return
a
+
b
+
c
+
d
;
3
}
4
5
int
main
() {
6
return
func
(
a:
1
,
b:
2
,
c:
3
,
d:
4
);
// break here
7
}
8