anyone know if it’s expected that some String.form...
# announcements
k
anyone know if it’s expected that some String.format calls don’t work with unsigned types?
b
I think java.lang.String.format doesn't know anything about unsigned types
k
yeah, figures, just thought there’d be some magic unwrapping going on
b
Is %s in the format suitable for you?
k
need %x in this case
g
%x is for hex? Maybe just uint.toString(16) and %s?