Scala Slides

A template project to build Scala-centric slide decks with mdoc and marp

Fancy Example

Here is an example of some Scala code processed with mdoc to illustrate
how you can enhance your slides:

val fibs: LazyList[BigInt] =
    BigInt(0) #:: BigInt(1) #:: fibs.zip(fibs.tail).map{ n => n._1 + n._2 }
fibs.take(10)
// res0: LazyList[BigInt] = LazyList(0, 1, 1, 2, 3, 5, 8, 13, 21, 34)