fn optional_arg(x ?int) { println('int type: $x') } fn main() { optional_arg(1) }