Skip to content

Instantly share code, notes, and snippets.

View Ybeltay's full-sized avatar

Magnus-018 Ybeltay

View GitHub Profile
@Ybeltay
Ybeltay / "Hola int".cpp
Last active September 4, 2025 02:51
Codigo en c++ del clasico "Hola mundo" usan una variable int.
#include <iostream>
using namespace std;
int hola()
{
cout<<"Hola Mundo";
}
int main()
{
hola();
return 0;
@Ybeltay
Ybeltay / "Hola using".cpp
Last active September 4, 2025 02:51
Codigo en c++ del clasico "Hola mundo" usando la funcion using.
#include <iostream>
using namespace std;
int main(){
cout <<"Hola MUndo";
return 0;
}
@Ybeltay
Ybeltay / hola.cpp
Last active September 4, 2025 02:51
1er programa
#3include<iostream>
int main()
{
std::cout<<"hola";
}