Logo

Programming-Idioms

History of Idiom 142 > diff from v28 to v29

Edit summary for version 29 by tkoenig:
[Clojure] wrong language

Version 28

2019-09-26, 20:45:30

Version 29

2019-09-26, 20:46:00

Idiom #142 Hexadecimal digits of an integer

Assign to string s the hexadecimal representation (base 16) of integer x.

E.g. 999 -> "3e7"

Idiom #142 Hexadecimal digits of an integer

Assign to string s the hexadecimal representation (base 16) of integer x.

E.g. 999 -> "3e7"

Extra Keywords
hex hexa radix
Extra Keywords
hex hexa radix
Code
  write (unit=s,'(Z8.8)') 999
Code