Last active
May 12, 2025 19:32
-
-
Save RedyAu/3bcf2a71e6742888ac604875c1c5146d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// To compile, use: https://github.com/arthaud/c2bf | |
int read = 0; | |
while (true) { | |
read = read_char(); | |
if (read == 'f') { | |
write_char('d'); | |
write_char('r'); | |
write_char('i'); | |
write_char('n'); | |
write_char('k'); | |
} | |
if (read == 'e') { | |
write_char('r'); | |
write_char('e'); | |
write_char('f'); | |
write_char('i'); | |
write_char('l'); | |
write_char('l'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment