// *** in version 6.2: ***//any text in backticks can be a namefunc `sum of two numbers`( _ a: Int, _ b: Int) -> Int { a + b}let `total value` = `sum of two numbers`(3, 5)print("total is \(`total value`)")//total is 8