library CB-Console; library CB-Storage; fn main() { string path = "closedbit-example-save.cb"; CB-Storage.write_text(path, "player=Ada;score=256"); println("Exists: " + CB-Storage.exists(path)); println("Loaded: " + CB-Storage.read_text(path)); }