Skip to content

Instantly share code, notes, and snippets.

@havenwood
Created January 31, 2023 22:22
Show Gist options
  • Save havenwood/b8506f5f28665a8d241268aa1cd2128a to your computer and use it in GitHub Desktop.
Save havenwood/b8506f5f28665a8d241268aa1cd2128a to your computer and use it in GitHub Desktop.
def num_to_char(num)
case num
in 0
'z'
in ..10
'b'
in ..33
'ws'
in ..293
'lp'
in ..339
'akd'
else
'd'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment