Hendrik van Rooyen wrote:
> <[EMAIL PROTECTED]> Wrote:
>
>
> |
> | Haha. How can I fix this!
> |
> |
> |
>
> Use either tabs, or spaces, but not both
>
> - Hendrik
Haha. I know. I just find it silly that a language insists on
indentation. I'd long known it but just was reminded of it when I
m
Haha. How can I fix this!
--
http://mail.python.org/mailman/listinfo/python-list
Ilias Lazaridis wrote:
> Greg Stein wrote:
> > Yeah... we recognize that we could certainly open-source more of our
> > software. While we've released some stuff
> > (code.google.com/projects.html), there is a LOT more that we want to
>
> http://code.google.com/projects.html
>
> > do. Getting engi
In bash, you'd do this with the perl interpreter
Issue the perl command via -e switches on the shell command line:
perl -e 'print "Hello, world\n"'
or
Pass your script to Perl via standard input:
echo "print 'Hello, world'" | perl -
How would you do the above with the python interpreter in bas