Skip to content

Instantly share code, notes, and snippets.

View glauesppen's full-sized avatar
:octocat:
Focusing

Glaucia Esppenchutz glauesppen

:octocat:
Focusing
View GitHub Profile
@stantonk
stantonk / scalaforpy
Last active August 28, 2021 10:13
Scala for Python Programmers, examples
/*
Notes:
Despite Scala's appearances, it is, in fact, a Statically Typed language.
It has just eliminated a great deal of the "type vomit" people are used
to seeing in Statically Typed languages (e.g. C, C++, Java). It often
can infer the type on its own. It also combines functional and
object-oriented programming paradigms in a fashion that feels similar
to Python.
*/