I'm a passionate and computer engineering student of Chungbuk National University.
Iβm currently learning Open Source Professional Project, Data communication and Programming Languages.
- Learning more about java, python and c.
- Trying to write better code β not just code that works.
- Grow my GitHub as a portfolio and record of my development journey.
- If you're working on something cool or want to chat, hit me up!
- Iβm always open to learning and sharing ideas π¬
- How to reach me : soohwan2392@gmail.com or korean people touch me to lym2392@naver.com
- Iβm looking to collaborate on open source projects, AI, Java, Python.
- Iβm looking for help with Docker, linux, java.
π½ Browse through my repositories to see what I've been working on. Hope you find something interesting!
#include <stdio.h>
const char* catArt[] = {
" /\\_____/\\ ",
" / o o \\ ",
" ( == ^ == ) ",
" ) ( ",
" ( ) ",
" ( ( ) ( ) ) ",
" (__(__)___(__)__)"
};
void printCat() {
int lines = sizeof(catArt) / sizeof(catArt[0]);
for (int i = 0; i < lines; ++i) {
printf("%s\n", catArt[i]);
}
}
int main() {
printf("πΎ Hello, GitHub World!\n\n");
printCat();
return 0;
}