mirror of
https://github.com/KarolS/millfork.git
synced 2024-12-25 21:29:25 +00:00
14 lines
238 B
Plaintext
14 lines
238 B
Plaintext
import stdio
|
|
import keyboard
|
|
void main() {
|
|
byte c
|
|
ensure_mixedcase()
|
|
while true {
|
|
c = readkey()
|
|
putchar(c)
|
|
putchar(hi_nibble_to_hex(c))
|
|
putchar(lo_nibble_to_hex(c))
|
|
putchar(' ')
|
|
}
|
|
}
|