mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

zunda

コンパイルできない全角goto

$ cat goto.c
void main(void) {
go to fail;
fail:
return;
}
$ gcc goto.c
goto.c: In function ‘main’:
goto.c:2:5: error: stray ‘\343’ in program
2 | go���to fail;
| ^
goto.c:2:6: error: stray ‘\200’ in program
2 | go���to fail;
| ^
goto.c:2:7: error: stray ‘\200’ in program
2 | go��to fail;
| ^
goto.c:2:3: error: unknown type name ‘go’
2 | go to fail;
| ^~
goto.c:2:11: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘fail’
2 | go to fail;
| ^~~~