Hacker News new | ask | show | jobs
by lalaithion 3215 days ago
you've got `let x = if y {100} else {99};`, which IMO is more readable than `let x = y ? 100 : 99`.