Programming#python#javascript#java#c++#assembly #coding

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

4:19: using NAMESPACE STD
4:20 std::cout
💀💀💀

Fortpsina
Автор

I usually assemble the transistors by hand

JBND
Автор

I can relate to c++ 💀I once decided to make a small car game. It took me 5 days and I got a colourless black N white car game where your car is fix, there are three roads and obstacles come in each, you have to dodge them. The worst feeling ever

hxh
Автор

All of rollercoaster tycoon is in assembly

Like going from walking to the booby trapped symbol jumping from India Jones, every step is painful, slow, and you have to understand it thoroughly before making your next move.

But is the most efficient because its already in computer language, no translation from what the way we talk to computer code

matthewboyd
Автор

its simple

section .data
str: db “Hello World!”, 10
len: equ $-str
section .text
mov rax, 1
mov rdi, 1
mov rsi, str
mov rdx, len
syscall

mov rax, 60
mov rdi, 0
syscall

This uses x86 unix syscalls. It prints hello world

vadym-beep
Автор

for c++ you didn't have to use the namespace and just used printf since its a supeset of c. you even still typed std:: even though you set it as the namespace.

flori
Автор

If c++ is like building a skyscraper out of legos, then assembly is like supergluing each grain of sand to make a skyscraper

Leans
Автор

The funny thing about assembly is with just two macros it's perfectly fine

xWatexx
Автор

Bro in cpp using namespace std but write std::cout in main() 😮😮 logique

AA-jvgj
Автор

I personally use binary as its much more optimized

vVearon
Автор

Javascript be like: "There are no semicolans Jhonny!"

MisterMisterweeee
Автор

Using namespace std but uses std::cout is crazy

userc
Автор

worst thing about being electronic technician is the fact i need to learn assembly..

lexonter
Автор

Rust 💀
fn main(){
let var = String::from(“hello world”)؛
println!(“{}”, var)؛
}
I love Rust ❤
Rust for ever 💪

Etc_
Автор

Love java, but damn is the printing system bad

danzackblack
Автор

Ive only used java briefly and nothing else, but doesnt python run slower

SoullesRando