This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import shapeless.ops.hlist.Prepend | |
import shapeless.{::, HList, HNil, Nat, Succ} | |
object Hanoi { | |
// influenced by : https://gist.github.com/jrudolph/66925 | |
// in action : https://youtu.be/mc6c_sX-ESc | |
case class Left() | |
case class Center() | |
case class Right() |