#scala
Read more stories on Hashnode
Articles with this tag
You can see about intro of AKKA on the below medium blog, I will focus on coding...
Conditional Statements if x > 0 then 1 else -1 val s = if x > 0 then 1 else -1 var t = 0 if x > 0 then t = 1 else -1 Input and Output We can...
A constructor is a special method that is used to initialize an object. Constructors are defined inside a class; with the same name as the class in...
Scala is a modern programming language that combines the feature of Object Oriented language (Like JAVA, and C++) and Functional Programming (Like...