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

21 lines
334 B
Coq
Raw Normal View History

namespace places;
2021-05-02 17:42:04 -04:00
required link world;
link[] roads;
2021-05-09 23:23:18 -04:00
member nitrogen;
restore {
2021-05-09 23:23:18 -04:00
this.nitrogen ??= Math.floor(Math.random() * 50);
}
takeNitrogen (requested) {
// give as much nutrients as we can!
const given = Math.max(this.nitrogen, requested);
this.nitrogen -= given;
return given;
}
2021-05-06 23:05:36 -04:00
ping {
return new Date().getTime();
2021-05-06 23:05:36 -04:00
}