[REBOL] code beauty... fiction ?
From: hallvard::ystad::helpinhand::com at: 10-Oct-2001 21:13
When I do java programming, I have the types BYTE and SHORT. I haven't found this in
rebol, so I convert integers this way:
short: load rejoin ["#{" pick to-hex some-integer 5
pick to-hex some-integer 6
pick to-hex some-integer 7
pick to-hex some-integer 8
"}"]
byte: load rejoin ["#{" pick to-hex some-integer 7
pick to-hex some-integer 8
"}"]
I don't find this a very sexy way to do it. Has anyone got any suggestions to do it in
a more intuitive way?
~H