Created
October 26, 2015 16:33
-
-
Save mbastian/9b9b49a4b96333da33ec to your computer and use it in GitHub Desktop.
writepaldbstore.scala
This file contains 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
val writer: StoreWriter = PalDB.createWriter(new File("store.paldb")); | |
writer.put("foo", "bar"); | |
writer.put(1213, Array(1, 2, 3)); | |
writer.close(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment