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

Sponsoring

@pimterry
@PhilippC
@ferdium

Organizations

@BreakOutEvent
Block or Report

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鈥檚 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

  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