Functions in Scala can be defined simply as follows:
def fnname (args)={
// function body
}
Implementing loop can be done in following manner.
def whileLoop{
var i = 1
while (i<=3) {
println (i)
Online free version of 'The Element of Style' is available in the following URI: http://www.bartleby.com/141/. A pdf version of the books is available here. Those who don&
The following lectures on Model-Driven Software Development(MDSD) are given by Dr. Eelco Visser at Tudelft in IN4308 course. To get the basic idea of MDSD and motivation behind it , please go through these lectures .
Implementing Polymorphism by @the_antlr_guy : http://goo.gl/IM9UN