Hello World Speedrun [Former World Record]

preview_player
Показать описание
Speedrunning Hello World in C++

Today I decided to speedrun Hello World in C++. Hello World is the easiest program to write when you start programming so there's not a big deal but I wanted to make a video so... Here we are.

You need to type some stuff on a notepad and let the PC do the rest.

#Programming #HelloWorld #Mults #C++ #Speedrun #Kirby #Speedrunning #Any% #WorldRecord #vscode #meme
Рекомендации по теме
Комментарии
Автор

that was clutch, hoping to see even more runs brother!

HyBlock
Автор

You can omit the "return 0;" at the end of the main function, the C++ standard allows it.

monochromeart
Автор

Nice but you can cut "return 0" cuz its not c its c++, it automatically knows no errors return

rossmanmagnus
Автор

Amazing Speedrun, truly the best run of all time.

mokongthe
Автор

La carpeta "Weas" me describe completamente siempre que hago un nuevo archivo y no sé ni por qué wea lo hago
PD; La mea Speedrun hermano, GG's

troubleZzxX
Автор

Now for the Tool Assisted Speedrun:
#include <fstream>
#include <unistd.h>
int main(){
std::ofstream file;
file.open("hello.cpp");
file << "#include <iostream>\nint main(){ std::cout << \"Hello, World!\"; return 0; }";
file.close();
system("g++ hello.cpp");
system("./a.out");
return 0;
}

davawen
Автор

Brave to speedrun this on the C++ version of the game, when the python version is theorized to have better routes.

curtiseichner
Автор

every programming class ever.
lesson 1: hello world
lesson 2: what variables are and how to declare them
lesson 3: methods.
lesson 4: multidimensional self learning non-euclidean neural-networks.

whitetiana
Автор

This is so thoughtful and well made. The soundtracks in the video played correctly in accordance with the corresponding video game play progressions.

Things that I noticed:
0:00 Capcom opening screen
0:02 ??? (Please let me know)
0:05 Rockman X (Mega Man X) stage selection screen
0:18 Rockman X required initial stage
0:31 COD hit (damn that ; bug 😂)
*0:35 "return 0;" 🤔🤷🤣
0:40 Kirby and Minecraft life bar
0:43 Super Mario (don't know which version it is from)
0:46 Metal Slug mission complete

chair
Автор

depending on compiler you can leave out return 0

amir
Автор

-next try python/lua, you can do both at the same time since the print function syntax is the same-

ninja_raven
Автор

this is amazing and you could definitely shave 1/3 of that time off

cboyslim
Автор

you can omit the int. also you can omit the return. also you can use puts. also you can avoid the include by using gcc's __builtin_puts
so
main(){__builtin_puts("hello world");}

the_cheese_cultist
Автор

I wonder who decided “hello world” would be the first program nearly every programmer makes.

DownbeatNova
Автор

python hello world speedrun:

hello = "Hello World!"
print(hello)

gustavothuram
Автор

Ur editing is similar to a channel that has 1+Million subs, you're underrated and I'm pretty sure it's not going to be like that for too long.

MazenEhab
Автор

OMG, MEGAMAN X SOUNDTRACK IS PLAYING IN THE BACKGROUND

nekonomikatadesu
Автор

You can open CMD like that? I did not know that, thank god I clicked on this video.

Yoh
Автор

I love how your script lines are in Spanish

pedropolanco
Автор

You can omit the return 0 and the return type in main which defaults to int

dishanshakya