title | description | author | keywords | url | marp |
---|---|---|---|---|---|
Scala Slides |
My Awesome Scala Talk ™️ |
Your Name Here |
scala, |
true |
A template project to build Scala-centric slide decks with mdoc and marp
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)