Files
ValueScript/inputs/passing/readme-demo.ts

13 lines
239 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
}