This module provides a simple way to persist data across computer restarts.
It handles serialization and file I/O, making it easy to save and load
any data structure!
Example: Basic Usage
// Create a store for player scores constscores = newPersistedStore("scores", { player1:0, player2:0 });
// Load existing data scores.load();
// Update and save scores.value.player1 += 10; scores.save();
Description
💾 Persistent storage manager for ComputerCraft
This module provides a simple way to persist data across computer restarts. It handles serialization and file I/O, making it easy to save and load any data structure!
Example: Basic Usage