views:

282

answers:

2

Is there an easy helper function in common lisp to convert from hex to decimal?

A: 

Never mind #xff = 255.....

Mike2012
+5  A: 
(parse-integer "ff" :radix 16)
newacct