RosettaCodeData/Task/Gray-code/PicoLisp/gray-code-2.l
2023-07-01 13:44:08 -04:00

4 lines
140 B
Text

(prinl " Binary Gray Decoded")
(for I (range 0 31)
(let G (grayEncode I)
(tab (4 9 9 9) I (bin I) G (grayDecode G)) ) )