bitburner-scripts/src/test.ts
2026-05-04 11:20:07 +08:00

7 lines
179 B
TypeScript

import { NS } from "@ns";
export const main = async (ns: NS) => {
const bruh = await ns.prompt("hello", { type: "text", choices: ["asdf1", "asdf2"] });
console.log(bruh);
};