Skip to content

Instantly share code, notes, and snippets.

View pascalg57's full-sized avatar

speedy pascalg57

View GitHub Profile
@pascalg57
pascalg57 / hello.c
Last active August 9, 2025 17:29
mon hello world
int main("hello wordl")
{
prinf("Hello world");
return 0;
}
@pascalg57
pascalg57 / hello2.c
Last active August 8, 2025 07:32
mon hello wordl 2
int main()
{
printf("Hello Wordl");
return 0;
}