Sujet : Re: Top 10 most common hard skills listed on resumes...
De : bc (at) *nospam* freeuk.com (Bart)
Groupes : comp.lang.cDate : 25. Aug 2024, 18:26:57
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vafpgv$20j4p$2@dont-email.me>
References : 1 2 3 4 5 6 7 8
User-Agent : Mozilla Thunderbird
On 25/08/2024 17:20, tTh wrote:
On 8/25/24 17:30, Bart wrote:
>
So what language goes between Assembly and C?
Forth ?
I had in mind languages classed as 'HLLs'. I'm not sure if Forth counts.
Otherwise there was a HLA I once worked with (that looks a lot more like a HLL than Forth ever will).
Plus various Intermediate Languages that I've devised. These are higher level than assembly, but are clearly not HLLs either. Especially stack-based ones like this actual example for a Hello program:
proc main*
loadimm u64 "Hello, World"
callp puts 1 0
stop 0
end
extproc void puts
extparam u64
extend
These are designed to be machine generated, but this one you could write manually if you had to. It's easier than ASM and it's portable.