// comment
# comment
/* comment */
答案
const x = 1;
val y = 2;
let z = 3;
id(x) { return x }
function id(x) { return x }
const id = x => x;
{ x: 1, y: 2 }
[ 'a', 'b', 'c' ]