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:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For example:
printf('%PRIu64\n', foo)
will printPRIu64
. I triedprintf('%' PRIu64 '\n', foo)
andprintf('%' + PRIu64 + '\n', foo)
. None of them worked. It seemsPRIu64
is undefined in Adept.Beta Was this translation helpful? Give feedback.
All reactions