Tuesday, September 18, 2012

Sawzall (programming language) - Wikipedia, the free encyclopedia

Sawzall (programming language) - Wikipedia, the free encyclopedia: "This complete Sawzall program will read the input and produce three results: the number of records, the sum of the values, and the sum of the squares of the values.
count: table sum of int;
total: table sum of float;
sum_of_squares: table sum of float;
x: float = input;
emit count <- 1;
emit total <- x;
emit sum_of_squares <- x * x;"

'via Blog this'