gc3pie

34 thoughts
last posted Jan. 3, 2013, 4:26 p.m.

17 earlier thoughts

0

There was a minor change I needed to make to squares.py as it was causing a syntax error on the node of execution:

On line 33, I changed:

        arguments=['expr', x, '*', x],

to:

        arguments=['expr', x, '\*', x],

In order to escape the * character so that it would be interpreted properly by the shell.

16 later thoughts