FunProg-Scala/src/Lesson1/CBV_vs_CBN.sc

11 lines
171 B
Scala

def firstCBV(x: Int, y: Int): Int = x
def firstCBN(x: Int, y: => Int): Int = x
def loop: Int = loop
firstCBV(4, 5)
firstCBN(4, 5)
firstCBN(4, loop)
//firstCBV(4, loop)