Hacker News new | ask | show | jobs
by throwaway798214 457 days ago
There are loads of programming languages which have nothing to do with the English language.

Assembly:

   LDA #$01
   STA $0200
   LDA #$05
   STA $0201
   LDA #$08
   STA $0202
Brainfuck:

   >>,[>>,]<<[
   [<<]>>>>[
   <<[>+<<+>-]
   >>[>+<<<<[->]>[<]>>-]
   <<<[[-]>>[>+<-]>>[<<<+>>>-]]
   >>[[<+>-]>>]<
   ]<<[>>+<<-]<<
   ]>>>>[.>>]
Oh, you meant easy to learn programming languages based on a real language? Yeah, English just happens to be one of the easier languages to learn and if you need to learn a programming language you can just as well learn English on the side. I did.
2 comments

I’m curious—do you think learning English is equally easy for everyone? Many programmers come from regions where English education is either poor or expensive. If someone is highly logical but struggles with English, should that be a barrier to learning how to code? Also what was your level/accessibility to education of English before you learned it? Did you start from scratch? Did you know a language that shared a root language with English?
I literally learned English reading the only computer books that were available at the time, mid 80s. That was before I had a single English class in school - in fact I already knew English pretty well by the time I started studying English on 7th grade. I come from Finland and the Finnish language has absolutely nothing to do with any other language (except Estonian), no words are even remotely similar to English.

Also I totally suck at learning languages. I've tried to learn Swedish, nope, German, nope, Spanish/Portuguese, also nope.

Ja jos mielestäsi suomenkieli liittyy johonkin muuhun kieleen niin ihan vapaasti voit ajatella niin. Viime viikonloppua yritin opettaa muutamia suomenkielen sanoja ja taivutusmuotoja kielenopettajalle joka jaksoi kuunnella noi puoli tuntia ja totesi etta "mahdotonta oppia koska mitään referenssiä muihin kieliin ei ole".

That’s impressive. But do you think your experience is typical or more of an exception?

What if coding was built from the ground up to be script-agnostic—where people didn’t need to 'learn English on the side' at all?

If a Finnish speaker could code in Finnish while collaborating with a Japanese speaker coding in Japanese — and the system translated everything seamlessly — do you think that would increase access to programming without fragmenting the codebase?

The Finnish version of Excel used to have all of the functions translated to Finnish (in late 90s when I was doing Excel for living). It was literally impossible to do anything with it as none of the documentation knew about the translated functions and it was very hard to self-translate the functions (as in there was mostly no logic in the Finnish function names thanks to the way Finnish language works).

What was supposedly done in good faith to make it easier for non-English speaking Finns to do Excel functions ended up making it impossible for everyone. If you didn't know Excel then =IF() was just as cryptic as =JOS() and if you did know Excel then you couldn't figure out why =IF() didn't work. At least .xls files were compatible because apparently functions were saved as opcodes and not as strings.

I haven't used non-English software since so no idea if Finnish Excel still has translated fuctions. Hope not.

Assembly instructions are English mnemonics. LDA->LoaD Accumulator, STA->STore Accumulator, ADD, SUB, JMP, MOV, etc.
Exactly! Even in low-level programming like Assembly, the core instructions are still based on English. Do you think there’s a way to design programming languages that don’t rely on English at all—not just in keywords, but in how concepts are structured?
APL. I also doubt Erlang (Ericsson's language) was based on English.
APL and possibly Erlang aren’t based on English, yet they never became the global standard.

Do you think it was because of technical reasons, or was it just easier for English-based languages (C, Python, JavaScript) to spread globally? If we designed a non-English programming system today, do you think it would actually gain adoption?