This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
vogue/test/main.v

12 lines
315 B
Coq
Raw Normal View History

singleton;
link currentSave;
async restore {
console.log('~ Welcome to Vogue ~');
// process.stdout.write(JSON.stringify(console, null, 2))
2021-05-17 18:41:38 -04:00
this.currentSave ??= create('world', {});
2021-05-18 07:56:57 -04:00
// const choice = await console.choice('select a thing', ['a', 'b', 'c', 'd']);
await this.currentSave.render();
2021-05-06 23:05:36 -04:00
}