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

14 lines
193 B
Coq
Raw Normal View History

namespace places;
2021-05-02 17:42:04 -04:00
required link world;
link[] roads;
member fertility;
restore {
this.fertility ??= Math.floor(Math.random() * 100);
}
2021-05-06 23:05:36 -04:00
ping {
console.log('Ping!', new Date().getTime());
}