+ 2
Which programming language you hate most?
programming language
5 odpowiedzi
+ 12
@Justin Hill I hope one day you will understand the power of assembly and love it afterwards 😁
No really, it's bit annoying but it is powerful enough to be loved too
+ 4
assembly.. example..
DATA SEGMENT
DATA ENDS
CODE SEGMENT
ASSUME DS:DATA,CS:CODE
START :
MOV AX,DATA
MOV DS,AX
MOV BL,00H
MOV CH,00H
MOV CL,0AH
L1 : MOV DH,00H
MOV DL,BL
ADD DL,'0'
MOV AH,02H
INT 21H
INC BL
LOOP L1
MOV AH,4CH
INT 21H
CODE ENDS
END START
;------
;OUTPUT
;------
; 0123456789
To be fair, I don't hate any language, but if I was going by level of frustration to learn, assembly is the one
+ 3
I would say c# or assembly as Justin pointed out.
The reason I hate c# is because I did a government run course on .net, I don't use windows and though you can program mono on linux, not being able to run visual studio and xarmin(For android apps) was very annoying.
It is just not very developer friendly in a Microsofts way or the highway kind of way.
+ 3
I am glad it's a thing, because I am a gamer from the 80s. Much respect to people who learn it.
+ 2
I don't hate any language (yet lol) but I do find Python a little awkward, is so different to the C "inspired" languages like almost all:
No curly braces
Indentation is critical
No switch statement, do while loop
probably other things I haven't found yet
Python is a cool scripting language, just a little different, like everything with pros and cons.