Created
April 2, 2025 19:55
-
-
Save JasonGoemaat/e245b39a6e1d1e2f6361896e4d1099fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export async function main(ns) { | |
| ns.tprint('Hello, world!') | |
| ns.tprint('See you in the debugger in 2 seconds...') | |
| await ns.sleep(2000) | |
| debugger; | |
| ns.tprint('Did you get what you want?') | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment