NimPyLib - Write Python in Nim

Have you ever looked for a faster Python implementation? Have you ever wondered Nim's stdlib not abundant and not handy like Python's?nimpylib/pylib is here for you!NimPyLib(pylib in short), is a pure...
0 Read More

Daily Code #2

Today on daily posts I will teach you how to make a Health app in JS ⛶// Tiny Health Tracker const health = { water: 0, steps: 0, drink: () => health.water++ || console.log(`Drank water! To...
0 Read More

R Programming basics

R Programming basics
Quick notes on R Datatypestypeof(x) or class(x)– both returns the data type of variable. however, typeof(x) is tend to be more specific ⛶x<-23.5 print(class(x)) >>>Numeric pr...
0 Read More