Sinisterly
Assembly as a first language? - Printable Version

+- Sinisterly (https://sinister.li)
+-- Forum: Coding (https://sinister.li/Forum-Coding)
+--- Forum: Assembly (https://sinister.li/Forum-Assembly)
+--- Thread: Assembly as a first language? (/Thread-Assembly-as-a-first-language)

Pages: 1 2 3


RE: Assembly as a first language? - Chloris - 05-10-2023

C, Python, and Java are probably the best languages to start with. You can achieve a lot with these three and it will make other languages much easier to learn.


RE: Assembly as a first language? - vekm - 10-07-2023

Nothing exception when first language is assembler. It is even better actually. But of course more complicated and longer.

Typical example with C:
Code:
int auth_flag = 0; char password_buffer[10];
and
Code:
char password_buffer[10]; int auth_flag = 0;
Person who studied assembler 100% know why first code is wrong and better to use second. While typical C developer - have no idea.

p.s.
It is possibly to test yourself before. Exist bunch of games where you need to code on simplified version of assembler. My favourite is EXAPUNKS:


RE: Assembly as a first language? - anonim6 - 12-06-2023

i learned assembly in my master degree and i think its the most boring programing language it is too old and somethings dont even make sense


RE: Assembly as a first language? - asd313as - 12-06-2023

Very outdated language but some small use cases


RE: Assembly as a first language? - tomclancyrs86 - 04-30-2024

Dr., to learn assembly you need a lot of knowledge from "lower" levels of computer abstraction. If you really want to learn assembly, first you need to study computer hardware.