10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
import { NS } from "@ns";
|
|
import { scan } from "./utils/scan";
|
|
import { startall } from "./utils/startall";
|
|
import { kill } from "./utils/kill";
|
|
|
|
export const main = (ns: NS) => {
|
|
ns.tprint(ns.getPurchasedServerCost(256));
|
|
console.log(ns.getPlayer());
|
|
};
|