Published onOctober 24, 2022How to create a closure in Rubyfunctional-programmingprogramming-fundamentalsrubyHow to create a function which has access to variables defined outside its block scope
Published onAugust 20, 2022What is concurrency in Go?programming-fundamentalsgoConcurrency is the ability of program to handle multiple tasks simultaneously. Go uses go routines to achieve this, also known as concurrency.