that was clutch, hoping to see even more runs brother!
@MultsElMesco3 жыл бұрын
Thanks bro! I hope to find other ideas soon!
@StarForgers2 жыл бұрын
69
@monochromeart73112 жыл бұрын
You can omit the "return 0;" at the end of the main function, the C++ standard allows it.
@Kathlyplayz2 жыл бұрын
It's very important because it's an integer function and not a void...
@monochromeart73112 жыл бұрын
@@Kathlyplayz the C++ standard specifies that the return statement in main (and ONLY in main) can be omitted. When the program reaches the function's end (the curly bracket '}') without encountering any return statement, it will return 0 by default. Note that the function signature must still have int as the return type. Try it yourself, it compiles fine. And iirc, C99 and above also allows it.
@Kathlyplayz2 жыл бұрын
@@monochromeart7311 r/woosh
@Kathlyplayz2 жыл бұрын
@@monochromeart7311 Ok, u right, I’ll start leaving the return out since, as of a about a minute ago, my very trusty gcc compiler didn’t choke slam me for omitting it.
@monochromeart73112 жыл бұрын
@@Kathlyplayz and where is the so obvious joke that I missed?
@mokongthe38562 жыл бұрын
Amazing Speedrun, truly the best run of all time.
@rossmanmagnus3 жыл бұрын
Nice but you can cut "return 0" cuz its not c its c++, it automatically knows no errors return
@EmoonX2 жыл бұрын
You can also omit it in C, since way back in C99.
@whitetiana3022 Жыл бұрын
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.
@davawen99382 жыл бұрын
Now for the Tool Assisted Speedrun: #include #include int main(){ std::ofstream file; file.open("hello.cpp"); file
@vas_._sfer61572 жыл бұрын
// In pure C int puts(char *); int main() {return puts("Hello world");}
@davawen99382 жыл бұрын
@@vas_._sfer6157 That's unsafe, in pure C, functions which take no arguments are written with void: int main(void) { ... }
@vas_._sfer61572 жыл бұрын
@@davawen9938 Why unsafe? I dont wanna call main from other functions
@Brahvim2 жыл бұрын
@@vas_._sfer6157 Wouldn't the system call it...? Edit made a month later: if we don't use `void`, it does indeed become a function you can pass anything into. Shouldn't use it with `main()`.
@Brahvim2 жыл бұрын
I like the `C` file API more, but this is fine too, I guess, LOL.
@troubleZzxX2 жыл бұрын
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
@LeonidasArg20212 жыл бұрын
Como soy argentino en vez de "weas" pongo "boludeces" me encanta complicarme al programar 😎👌
@marxy37203 жыл бұрын
Nice speedrun bro!! 😎
@MultsElMesco3 жыл бұрын
Thanks hahaha
@curtiseichner13062 жыл бұрын
Brave to speedrun this on the C++ version of the game, when the python version is theorized to have better routes.
@kabukidanshi78743 жыл бұрын
That was very intense haha nice!
@MultsElMesco3 жыл бұрын
Thanks hahaha
@chair6180 Жыл бұрын
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
@cboyslim54902 жыл бұрын
this is amazing and you could definitely shave 1/3 of that time off
@dracokinerek2 жыл бұрын
0:05 love the mega man x intro music
@amir789892 жыл бұрын
depending on compiler you can leave out return 0
@ninja_raven2563 жыл бұрын
-next try python/lua, you can do both at the same time since the print function syntax is the same-
@MultsElMesco3 жыл бұрын
You mean coding both at the same time? Nuts. I've never worked with lua before
@VexSpawnEgg2 жыл бұрын
@@MultsElMesco lua is really easy to learn, prolly easier then python
@do0nv2 жыл бұрын
Python is faster because the .py extension is faster to type than lua
@buji072 жыл бұрын
@@VexSpawnEgg lua is the only language i'm advanced at
@DownbeatNova9 ай бұрын
I wonder who decided “hello world” would be the first program nearly every programmer makes.
@BboyKeny2 жыл бұрын
Long reign the world record holder
@the_cheese_cultist Жыл бұрын
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");}
@tomasbarria74313 жыл бұрын
Documentos/weas JSKSNSJBD
@MultsElMesco3 жыл бұрын
Esperaba que alguien lo notara gkfkgfk
@Yoh1202 жыл бұрын
You can open CMD like that? I did not know that, thank god I clicked on this video.
@finesseandstyle Жыл бұрын
It's essentially the same as running a program using PATH. you can open anything like explorer, cmd, powershell, calc, etc
@sm1le7482 жыл бұрын
Python: print("Hello World!")
@gustavothuram53702 жыл бұрын
python hello world speedrun: hello = "Hello World!" print(hello)
@bubaabobagugajshdjdbd2 жыл бұрын
Be faster: print("Hello world")
@tfr2 жыл бұрын
Be faster: print('Hello world') double quotes requires you to press shift, thus using single quotes eliminates 2 shift presses therefore further improving speed
@grapesalt2 жыл бұрын
ruby speedrun: p "Hello, World"
@pedropolanco70522 жыл бұрын
I love how your script lines are in Spanish
@dishanshakya8855 Жыл бұрын
You can omit the return 0 and the return type in main which defaults to int
@Heavenlylovestattoos Жыл бұрын
learning c++ speedrun
@nekonomikatadesu2352 жыл бұрын
OMG, MEGAMAN X SOUNDTRACK IS PLAYING IN THE BACKGROUND
@flovous2 жыл бұрын
Clutch, lets do with assembly next
@ariankar98k2 жыл бұрын
MegaMan X music, nice
@tanishqdeep44852 жыл бұрын
Me doing it in python : I see this as a win win
@MyLittleMagneton2 жыл бұрын
Punch card hello world, when?
@snesmocha2 жыл бұрын
printf is less characters than std::out
@davawen99382 жыл бұрын
@DybaTubeMusic I don't think it is with just a character literal
@davawen99382 жыл бұрын
@DybaTubeMusic bruh
@vincenzo35742 жыл бұрын
puts is even shorter
@vincenzo35742 жыл бұрын
@DybaTubeMusic No it's not unless you use it wrong (i.e. non constant format string or wrong number of arguments)
@davawen99382 жыл бұрын
@DybaTubeMusic Noise removed, this is basically the source from glibc: (puts) int _IO_puts(const char *str) { /* Return and validation ignored for brevety */ size_t len = strlen(str); if( _IO_sputn(stdout, str, len) == len) { /* ... */ } } (std::cout) template operator
@hermessantos1812 жыл бұрын
congrats
@agrihonoberjorn16122 жыл бұрын
Subbed
@BruH-xg5eo2 жыл бұрын
Me before watching : im a lv 15 hacker and i can say its Just 1 line of code Me after watching : oof it im not Even trying to learn how to code
@Brahvim2 жыл бұрын
You can omit the `int` part of the function definition. Any variable without a type is assumed to be of the type `int` (in `C` at least, should transfer to `C++`).
@MazenEhab2 жыл бұрын
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.
@ball0on2 жыл бұрын
I want to see a hello world speedrun in brainfuck
@FlummoxTheMagnificent Жыл бұрын
Lmfao ctrl+V
@m4rt_2 жыл бұрын
I just did one in 23 seconds, and I know I can get sub 20 Update: I just did one in 22 seconds (with a newline at the end)
@eprg92213 жыл бұрын
Epic
@MultsElMesco3 жыл бұрын
Thanks!
@boring_dystopia2 жыл бұрын
good rng
@AragamiMusic2 жыл бұрын
I'd like the same speedrun but in python haha
@inkphoenix54462 жыл бұрын
you could use printf instead of std::cout to be quicker and you could also omit return 0
@igorswies59132 жыл бұрын
puts would be quicker
@huntabadday26632 жыл бұрын
Why does his cpp file default to notepad...
@frosty76742 жыл бұрын
You could make it faster by using std::puts("hello world"); or just puts("hello world"); over that you don't need an explicit return in modern c++.
@Ev3r0x2 жыл бұрын
implicit return for main in c++ and c has been around for 30 years and you call it "modern c++"?
@sashibhusan57212 жыл бұрын
World's first fastest Speed run 😲
@mr.president69222 жыл бұрын
Main function can return 0 by default you don't need to write it
@Anonymous-hv7fh Жыл бұрын
ctrl c , ctrl v , enter wouldn't be much more faster ?
@AnimaBetha2 жыл бұрын
Finally, wea wena
@CIGS13 Жыл бұрын
you dont need to return in this case
@draconicepic41248 ай бұрын
Wouldn't you technically be faster to use cstdio and use puts since it's less overall characters to type?
@zZnighthunterZz4 ай бұрын
GG
@pixl_xip11 ай бұрын
why dont you just do it all in the command line with vim? you would not need to create the file, and you wouldnt need to open a command prompt midway through
@GingerNingerish3 жыл бұрын
Funniest shit I've ever seen
@MultsElMesco3 жыл бұрын
Thanks bro
@srabb Жыл бұрын
what was that sound effect on the intro?
@usernameHed2 жыл бұрын
Now same with assembly please :p
@artifexmusic2 жыл бұрын
now do it in cobol on a ibm mainframe
@EMAN-je6ob9 ай бұрын
But, can speedrunning assembly?
@demonman1234 Жыл бұрын
Idk bro you can’t beat my copy paste.
@meganeshinryakusha2 жыл бұрын
python > print('Hello World') aahahahh
@Aviation6672 жыл бұрын
Challenge accepted
@Xgamesvidoes2 жыл бұрын
I still prefer: printf("Hello World! ");
@IamTheOneWhoKnocks2652 жыл бұрын
How about using turboc++
@huhulili90212 жыл бұрын
Can I get a TAS version of this?
@slimeinabox2 жыл бұрын
Bro just prep for the run by copying it and the paste it during the run.
@yellowsaint2 жыл бұрын
haha, now do it in Haxe
@LeonidasArg20212 жыл бұрын
Tenés una dirección con una carpeta llamada "Weas". A mí no me engañas papirri sos mas chileno que el lomo pobre con papas 😏 saludos ❤️
@MultsElMesco2 жыл бұрын
Jajaja si, así es. Saludos por allá también mi pana!
@sripranav2 жыл бұрын
I challenge you
@watercat12482 жыл бұрын
I'm able to do that faster the only takes 1 copy and past and very little time to open the code editor
@selumii2 жыл бұрын
eres chileno?
@MultsElMesco2 жыл бұрын
Yep, tu también?
@Noicer_wastaken Жыл бұрын
How about just do copy paste?
@toxinist52362 жыл бұрын
Cool, now dont use any libriaries
@HoloTheDrunk2 жыл бұрын
Are there different categories per-OS? If not, I just did it in a little over 20s on Linux I use arch btw
@mlcs2 жыл бұрын
i use Artix, fuck soystemd
@vanity1856 Жыл бұрын
speedrun
@luismunoz9126 Жыл бұрын
Are you Chilean?
@aguy98ptk2 жыл бұрын
WC
@zanxz Жыл бұрын
megaman x
@herrobriam Жыл бұрын
could of made less mistakes and typed faster
@JunkerSchmidt2 жыл бұрын
Is it cpp? You forgot "Out of range error" and BSOD at the end.
@blitzschlag58183 жыл бұрын
weas
@MultsElMesco3 жыл бұрын
Weas
@seeforkat2 жыл бұрын
E
@auseziegieteursucraineiwst36802 жыл бұрын
NOW DO JAVA!!!! or C#
@desaironak50873 жыл бұрын
Hey I'm also in programing field your thumbnail is not eye catchy would like to discuss about that more
@coolmanthecool603 Жыл бұрын
clutch but I could beat your time
@DeveloVooshGWeb2 жыл бұрын
BOO FAKE SPEEDRUN Didn't even include the installation of the thing that runs cpp files...
@OS9N9D2 жыл бұрын
So it would take about 9 minutes to install windows lol
@DeveloVooshGWeb2 жыл бұрын
@@OS9N9D exactly 1. buy new laptop (buy desktop case and parts if can't) 2. install windows 3. install visual studio 4. install code editor 5. C O D E 6. run but this just does step 5 and 6 so FAKE SPEEDRU-
@DeveloVooshGWeb2 жыл бұрын
@@p0xygen tru you could use Linux you are the true speedrunner-
@DeveloVooshGWeb2 жыл бұрын
@@p0xygen cool
@DeveloVooshGWeb2 жыл бұрын
@@p0xygen also idk if you can tell i was joking lmao
@welcominthehollowdrop2 жыл бұрын
(this is not a joke it exist) coulde you make a speedrun in brainfuck? (again not a joke brainfuck language really exist)
@Simplified-Script-Development2 жыл бұрын
I can do better 😎
@devbean11442 жыл бұрын
i can do better!
@finsflexin2 жыл бұрын
Dislike
@gavinthecrafter2 жыл бұрын
I got an even faster time by doing #include int main(){std::cout