Skip to content

Instantly share code, notes, and snippets.

@MrChrisWeinert
MrChrisWeinert / GameOfLife.cs
Created August 4, 2020 15:00 — forked from lennartb-/GameOfLife.cs
Conway's Game of Life in C# (Console App) with basic arrays and without any fancy complicated stuff. No error checking included.
using System;
namespace GameOfLife {
public class LifeSimulation {
private int Heigth;
private int Width;
private bool[,] cells;
/// <summary>
@MrChrisWeinert
MrChrisWeinert / 0_reuse_code.js
Created April 5, 2017 11:54
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console