The best programming language for GUI?
The best programming language for GUI?
I want to know which is the best GUI supporting language that also controls CPUs nicely!
Re: The best programming language for GUI?
I want to know which colour a car should have if I want to drive it off-road!
Re: The best programming language for GUI?
There is only one language which has direct control over the CPU, and that is assembly language.IdiotOS wrote:I want to know which is the best GUI supporting language that also controls CPUs nicely!
As for a GUI, the low level functions would probably have to be implemented in assembly language, but higher level functions could probably be written in C.
The more general answer to your questions is that most people use assembly language when they have to, but C otherwise. That may be because they want their OS to be portable to other architectures, or because C code is more pleasing on the eye. The latter is largely because C is a structured language. Assembly language isn't particularly difficult, but it does require more steps to complete a relativly simple task. For example, the C code:
x = y + z;
Might translate into:
Code: Select all
mov ax, y
add ax, z
mov x, ax
- NickJohnson
- Member
- Posts: 1249
- Joined: Tue Mar 24, 2009 8:11 pm
- Location: Sunnyvale, California
Re: The best programming language for GUI?
Jeez guys, stop trolling.
FORTRAN is clearly the best language for writing GUIs. The screen is just one giant matrix...
FORTRAN is clearly the best language for writing GUIs. The screen is just one giant matrix...