Skip to content

Instantly share code, notes, and snippets.

View redfire75369's full-sized avatar

Redfire redfire75369

View GitHub Profile
@redfire75369
redfire75369 / lore
Created November 21, 2023 17:23
Nucleon Archive (Ex-Pastebin)
Narration:
You've somehow managed to escape unscathed from the explosion which turned what used to be your home into a cloud of dust.
You now find yourself on an empty, derelict space station drifting through space. All of the useful equipment on it has been stripped long ago, leaving you with nothing but protection from outer space.
Your quick thinking got you this far, but it seems it won't be the only skill you'll need if you want to ensure your continued survival.
Considering there's nothing of use inside the space station, perhaps the outside will have to provide. There appear to be a lot of asteroids around, and considering how essential asteroid mining was for Earth, they're definitely the first place which should be checked, assuming you can safely reach them.
public final class Print {
private str = new String();
public Print(String string) {
this.str = string;
}
public void print() {
system.out.println(str);
}
}