fix indent
This commit is contained in:
parent
79b9649979
commit
ed8b504ee9
2 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
int foo(int a) {
|
int foo (int a) {
|
||||||
return a;
|
return a;
|
||||||
}
|
}
|
||||||
|
|
||||||
void main() {
|
void main () {
|
||||||
void b = foo(1); # Error on line 6 col 17: Expected int but given void.
|
void b = foo(1); # Error on line 6 col 17: Expected int but given void.
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
int main(a) { # Error on line 1 col 9: Syntax error.
|
int main (a) { # Error on line 1 col 9: Syntax error.
|
||||||
return a;
|
return a;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue