Page 1 of 1

languages

Posted: 14 Nov 2013, 19:19
by wushin
Switching between what languages (Programming or Spoken) is the most bother some?
for me it's Php and Python thats troublesome.

Re: languages

Posted: 14 Nov 2013, 19:24
by o11c
Python and C++. It's only the parentheses vs colon for the 'if' that get me.

Code: Select all

if cond:
    foo()

Code: Select all

if (cond)
{
    foo();
}

Re: languages

Posted: 15 Nov 2013, 08:19
by Crush
At home I am working on a Java project. In Java, every line ends with a semicolon.

At work I am working in ABAP, a proprietary programming language for SAP ERP systems, which ends every line with a dot.

Guess what mistake I make in every first line I write after comming to work or getting home?