2013|10|11|12|
2014|01|02|03|04|05|06|07|08|09|10|11|12|
2015|01|02|03|04|05|06|07|08|09|10|11|12|
2016|01|02|03|04|05|06|07|08|09|10|11|12|
2017|01|02|03|04|05|06|07|08|09|10|11|12|
2018|01|02|03|04|05|06|07|08|09|10|11|12|
2019|01|02|03|04|05|06|07|08|09|10|11|12|
2020|01|02|03|04|05|06|07|08|09|10|11|12|
2021|01|02|03|04|05|06|07|08|09|10|11|12|
2022|01|02|03|04|05|06|07|08|09|10|11|12|
2023|01|02|03|04|05|06|07|08|09|10|11|12|
2024|01|02|03|04|05|

2018-05-17 For example, C/C ++ and Python do not fight in my mind. [長年日記]

I think that fighting about doctrine and interpretation in religion is probably like this.

The difference of following programs between

int a[100];
for (int i = 0; i < 100; i++){
  a[i] = i; 
}
syntax2html

and

int a[101];
for (int i = 1; i <= 100; ++i){
  a[i] = i; 
}
syntax2html

absolutely unforgivable for me.

----

For example, C/C ++ and Python do not fight in my mind.

For me, the above two languages coexists friendly.