Created
June 8, 2021 22:17
-
-
Save tallpeak/8242e816475eb7972d09ff43a6ebe70a to your computer and use it in GitHub Desktop.
This file contains 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
import zio.App | |
import zio.console._ | |
object HelloWorld extends App { | |
def decodeBindigits(bindigits : String) : String = { | |
var decoded = "" | |
var c = 1 | |
for (ch <- bindigits) { | |
if (ch == '0' || ch == '1') { | |
c = c + c + (ch & 1) | |
if ((c & 256) == 256) { | |
decoded += (c&255).toChar | |
c = 1 | |
} | |
} | |
} | |
decoded | |
} | |
def run(args: List[String]) = | |
myAppLogic.exitCode | |
val myAppLogic = | |
for { | |
_ <- putStrLn("enter some binary digits to decode to ASCII?") | |
bindigits <- getStrLn | |
decoded = decodeBindigits(bindigits) | |
_ <- putStrLn(s"Hello, $decoded, welcome to ZIO!") | |
} yield () | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment