En Java y en Python + Tkinter
Es un autómata celular y fué inventado por el matemático John Conway en 1970.
Este tipo de autómatas son inventados para simular sistemas en el mundo real.
Contiene las siguientes reglas:
#include <stdio.h> //Library for using standard input and output
int main(int argc, char* argv[]){ //function main which is executed first when the program is invoked
//it receives 2 parameters, the first one is the counter of arguments
//the second one is an array of arguments from command line
printf("Hello world!\nby %s\n", argv[1]); //We say Hello and print the second parameter from char array argv[] of
//arguments from command line
return 0; //the function returns the integer zero and everything it's ok
}//End of the program