Update storage-write.js

pull/3467/head
jeonlab 2024-06-27 14:34:01 -04:00 committed by GitHub
parent d6dbb0d077
commit 5a2f18885c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,8 @@
and hit HOME and type " and hit END and type \n"+.
*/
f = require("Storage").open("course-data","w"); // "w" to create or overwrite, "a" to append
const Storage = require("Storage");
const f = Storage.open("course-data", "a"); // "w" to create or overwrite, "a" to append
f.write(
"course name\n"+
"00.000000,00.000000,0\n"+