When things get tooComplex in batch, I want to call upon other programs.
But what language to write those programs in, Python, C, C++ ?
Some say I should learn all three, in that order.
Python: ( As a java dev I find Python syntax ugly and confusing. )
Code: Select all
def foo(x):
if x == 0:
bar()
baz()
else:
qux(x)
foo(x - 1)
Code: Select all
void foo ( int x ) {
if ( x == 0 ) {
bar();
baz();
} else {
qux( x );
foo( x - 1 );
}
}
So only require a text-based interface, maybe a little QBASIC like drawing of shapes and menus.
Then the ++ in C confuses me, do I need to download C, C++, both ?
Thanks "
