blob: d16ee993b4c7575e5cfdff7ac3564b9cf169a033 [file] [log] [blame]
def a = 5
print a ? 1 : 2
print a ?: 4
def b = true
print b ? 3 : 4
print b ?: 5
print b? : 4
print( (3-4)?:4)