Files
ValueScript/inputs/passing/readme-demo.ts
2023-03-08 13:30:03 +11:00

13 lines
238 B
TypeScript

// test_output! false
export default function main() {
const leftBowl = ["apple", "mango"];
let rightBowl = leftBowl;
rightBowl.push("peach");
return leftBowl.includes("peach");
// TypeScript: true
// ValueScript: false
}