6 lines
109 B
TypeScript
6 lines
109 B
TypeScript
|
import { Game } from "planetwars";
|
||
|
|
||
|
export function main(game: Game) {
|
||
|
console.log(game.turn_count());
|
||
|
}
|