/* Wolfram Code */ import jp.ac.tuis.basic.*; public class WolframCode{ public static void main(String[] args){ BasicGraphics g = new BasicGraphics(100, 40, 10); //start graphics int[] cell = new int[1000]; //width of 1 line of cells int[] newcell = new int[cell.length]; //new line of cells int[] rule = new int[8]; //rule binary string //rule 90 in binary is 01011010 rule[7]=0; rule[6]=1; rule[5]=0; rule[4]=1; rule[3]=1; rule[2]=0; rule[1]=1; rule[0]=0; cell[cell.length/2]=1; //set center of cells to 1 //for(int x=1; x