We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
def f(a: A, b: => B): C
def add(a: Int, b: Int): Int = a + b add(2 * 2, 3) => add(4, 3) => 4 + 3 => 7
def add(a: => Int, b: => Int): Int = a + b add(2 * 2, 3 * 3) => (2 * 2) + (3 * 3) => 4 + 9 => 13
There was an error while loading. Please reload this page.