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/world.v

24 lines
318 B
V

link[] places;
link place;
link character;
import random from 'random-world';
restore {
if(this.places.empty) {
for(let i = 0; i < 10; i ++) {
const name = random.city();
if(name.indexOf(' ') > -1) {
i --;
continue;
}
console.log(name);
}
}
character ??= create('')
}
async render() {
}