mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-02-05 20:03:26 +00:00
10 lines
159 B
JavaScript
10 lines
159 B
JavaScript
|
EmbarkSpec = require("embark-framework").specs();
|
||
|
|
||
|
SimpleStorage = EmbarkSpec.SimpleStorage;
|
||
|
|
||
|
SimpleStorage.set(100);
|
||
|
|
||
|
a = SimpleStorage.get()
|
||
|
console.log(a)
|
||
|
|