Replies: 1 comment
|
Adept does not support PRIu64 and the C defines like them. PRIu64 is a string literal in C, which gets concatenated when you use it. Adept does not have string concatenation like If you want to print a ulong/usize, you can use either Or you can always convert to a string if you want to be extra sure: |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
For example:
printf('%PRIu64\n', foo)will printPRIu64. I triedprintf('%' PRIu64 '\n', foo)andprintf('%' + PRIu64 + '\n', foo). None of them worked. It seemsPRIu64is undefined in Adept.All reactions