#include <stdio.h>
void name(){
printf("NAME\n");
char name[] = "Jesse";
char alias[] = "ogjojo";
printf("Name : %s\nAlias : %s\n\n", name, alias);
}
void skills(){
printf("SKILLS\n");
char code[] = "Python (intermediate), Javascript (intermediate), C (noob)";
char languages[] = "Swedish, Finnish, English";
printf("Programming : %s\nLanguages : %s\n\n", code, languages);
}
void links(){
printf("LINKS\n");
char website[] = "www.whereistayuplate.com";
printf("Website : %s\n\n", website);
}
int main(void){
name();
skills();
links();
return 0;
}
👨💻
customizing neovim
Popular repositories Loading
-
-
config.nvim
config.nvim PublicForked from nvim-lua/kickstart.nvim
My neovim configuration forked from kickstart.nvim
Lua
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.