Links tagged “ace”

1 link, newest first.

  • microsoft.github.io

    / Game of Life Implemented in TypeScript To learn more about TypeScript, please visit http://www.typescriptlang.org/ / module Conway { export class Cell { public row: number; public col: number; public live: boolean; constructor(row: number, col: number, live: boolean) { this.row = row; this.col = c…