We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code:
fun foo'(x : int) { return x } let comp main = read[int] >>> map foo' >>> write[int]
generates illegal C (C identifiers cannot contain single quote), causing gcc warnings and errors:
gcc
gcc -std=c99 -msse3 -I . -c test.c -o test.o test.c:26:10: warning: missing terminating ' character [enabled by default] int32 foo'_ln1_1(int32 x2); ^ ...
Two potential fixes:
The text was updated successfully, but these errors were encountered:
Possible duplicate: #80
Sorry, something went wrong.
Closed as duplicate of #80
No branches or pull requests
The following code:
generates illegal C (C identifiers cannot contain single quote), causing
gcc
warnings and errors:Two potential fixes:
The text was updated successfully, but these errors were encountered: