class¶ ← Back Basic Info¶ Type: sc Size: 94 B Origin Download Functional Programming └── Lab ML └── 0506 └── class.sc Preview¶ def triple(x: Int): Int = x * 3 val tripleCopy: (Int) => Int = triple println(tripleCopy(5))