Test to see how ram cost is calculated

This commit is contained in:
Isaac Shoebottom 2023-11-03 14:41:22 -03:00
parent 50117674e1
commit 070a48f298

6
servers/home/ramcost.ts Normal file
View File

@ -0,0 +1,6 @@
import {NS} from "NetscriptDefinitions";
import {executeScriptOnServerFromAnother} from "./utils";
export async function main(ns: NS) {
executeScriptOnServerFromAnother(ns, "servers/home/ramcost.ts", [], "home")
}