mirror of
https://github.com/KarolS/millfork.git
synced 2025-01-07 01:30:11 +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(' ')
|
||
|
}
|
||
|
}
|