Skip to content

Instantly share code, notes, and snippets.

View helio-silva's full-sized avatar

Helio helio-silva

  • Iggy informatica
  • Brazil
View GitHub Profile
@ngocdaothanh
ngocdaothanh / gist:3764694
Created September 22, 2012 00:43
Scala Assignment: Recursion
package recfun
import scala.collection.mutable.ListBuffer
import common._
/** https://class.coursera.org/progfun-2012-001/assignment/view?assignment_id=4 */
object Main {
def main(args: Array[String]) {
println("Pascal's Triangle")
for (row <- 0 to 10) {