/cluj-scala-problem-solving

Cluj.scala meetup - Problem solving by learning Scala

Primary LanguageScalaOtherNOASSERTION

Cluj.scala meetup - Problem solving by learning Scala

Meetup page: http://www.meetup.com/cluj-scala/events/225092732/

This is a project to help us get started at our meetup. It will install Scala & SBT for you, and it contains some examples of solved problems with unit tests.

Problems

  1. Ninety-Nine Scala Problems
  2. Project Euler

Installation

This project is based on Typesafe Activator.

In order to install Scala, the SBT build system, and the project dependencies (Scala Test) you just need to execute the following command:

./activator

After the console is loaded you can

  • run the tests by typing test inside the console
  • run a class by typing runMain E001, where E001 is the name of the object with a main method
  • run a class by typing run, and then choosing the class you want to run