tsconst ship1 = #{ x: 1, y: 2 };
const tuple = #[1, 2, 3];
tsassert(#{ a: 1 } === #{ a: 1 }); // ok
assert(#[1] === #[1]); // ok
jsconst record = #{ prop: 1 };
record.prop = 2 // "Cannot assign to read only property 'prop' of object '[object Object]'"