Objective
Write a program that draws an initial grid from commands, then simulates a cellular life board.
Steps
$ printf 'rpdd' | ./life_board_draw 3 3 0
.@.\n.@.\n.@.\n
$ printf 'rpdd' | ./life_board_draw 3 3 1
...\n@@@\n...\n
Expected files
Allowed functions

Objective
Write a program that draws an initial grid from commands, then simulates a cellular life board.
Steps
$ printf 'rpdd' | ./life_board_draw 3 3 0
.@.\n.@.\n.@.\n
$ printf 'rpdd' | ./life_board_draw 3 3 1
...\n@@@\n...\n
Expected files
Allowed functions

Tests
Run the tests to grade your code