KNUHS student,
who likes to code and swim.
Contact me
instagram | [email protected]
#include <stdbool.h>
#include "ojbects/person"
int main() {
CodeStyle code_style = {
.tab = 2,
.semicolon = true,
.clean_code = "working on it...",
.comments = "less comments but more redability",
};
char **skill_set = { "C", "Python", "Assembly" }
Person hooss = {
.name = "Changmin Jung",
.age = 18,
.birth = "2007/02/13",
.from = "Korea",
.school = "Kyungpook National University High School",
.tool = "neovim & tmux",
.code_style = code_style,
.skill_set = skill_set,
};
return 0;
}