Hi guys, quick newbie question, how can I rewrite ...
# announcements
g
Hi guys, quick newbie question, how can I rewrite this code to K ?
v = v + (digest[i] & 0xff) * (int) Math.pow(256, i);
Tried with auto-converting, which is:
v = v + (digest[i] and 0xff) * Math.pow(256.0, i.toDouble()).toInt()
getting Unresolved reference: and