Peter Mbanugopmbanugo.me·Sep 27, 2024Building HTTP/JSON API In Gleam: IntroductionI previously built software using C# and .NET technologies, before switching to fullstack JavaScript some years back. That means I’m not scared about trying something new, and sticking to it if it appeals to me. After hearing two people speak passion...Discuss·239 readsgleam
Lucas Payrfunctional-fieldnotes.hashnode.dev·Jul 18, 2024Exploring gleam/boolA good way of really understanding a programming language is to go deep into the standard library and really get to know every single function. In this blog post, we will explore the bool module of the gleam standard library. I might look into other ...Discussgleam
Stella Mariesmkou.hashnode.dev·Apr 22, 2024Gleam: RaindropsProblem on Exercism pub fn convert(number: Int) -> String { } First Iteration: Pattern-matching To start, I just wanted to solve the problem and decided to use pattern-matching. pub fn convert(number: Int) -> String { case number % 3, number % 5...Discussgleam
Stella Mariesmkou.hashnode.dev·Apr 22, 2024Gleam: Difference of SquaresProblem on Exercism and on Project Euler pub fn square_of_sum(n: Int) -> Int {} pub fn sum_of_squares(n: Int) -> Int {} pub fn difference(n: Int) -> Int { square_of_sum(n) - sum_of_squares(n) } First Iteration: Recursion Since the square of th...Discussgleam