Skip to content
View thepiwo's full-sized avatar
🐳
hacking sophia
🐳
hacking sophia

Sponsoring

@pimterry
@PhilippC
@ferdium
@pyrou

Organizations

@BreakOutEvent

Block or report thepiwo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
thepiwo/README.md

🙌 Founder @unit214

😍  Full-Stack Engineering

🐳  Blockchain Development

λ Functional Programming

function
  to_str : int * list(int * string) => string
  to_str((_, [(_, s1)]))          = s1
  to_str((_, [(_, s1), (_, s2)])) = String.concat(s1, s2)
  to_str((x, _))                  = Int.to_str(x)
    
entrypoint fizz_buzz(to : int) : list(string) = 
  let fizz_or_buzz = (x) => [ (m, s) | (m, s) <- [(3, "Fizz"), (5, "Buzz")], if(x mod m == 0) ]
  [ to_str((x, fizz_or_buzz(x))) | x <- [1..to] ]

Pinned Loading

  1. open-lifelogging open-lifelogging Public

    Backend server for the open-lifelogging android app and webclient

    Scala 4

  2. ae-sophia-functions ae-sophia-functions Public

    1

  3. BreakOutEvent/breakout-payment BreakOutEvent/breakout-payment Public

    Payment script for breakout accounting with the @fidor api

    Scala 1

  4. BreakOutEvent/breakout-backend BreakOutEvent/breakout-backend Public

    The backend for BreakOut

    Kotlin 12 2

  5. open-lifelogging-android open-lifelogging-android Public

    Logging client for open-lifelogging on android

    Kotlin