package com.packt.chapter2 fun main(args: Array) { val x = 1 val y = 2 val z = 2 val isTrue = x < y && x < z val alsoTrue = x == y || y == z }