#include <stdio.h>
int main() {
printf("Hello world\n");
aboutMe();
printf("Welcome to my page!");
return 0;
}
void aboutMe(){
printf("I am currently a student at UC Davis studying Computer Science and Design as I explore the interlap between art and technology.
I loves developing websites and seek to explore a career in UI/UX design or as a front end developer. When I am not creating, l love playing volleyball and basketball, white water rafting,
hiking, camping, swimming, and enjoying the outdoors.\n");
return;
}