17-years-old student,
who likes to program and swim.
Contact me
instagram | [email protected]
#include <stdbool.h>
#include "ojbects/person"
#define MAYBE 0.5
int main() {
CodeStyle code_style = {
.tab = 2;
.semicolon = true;
.clean_code = MAYBE;
.comments = "less comments but more redability";
};
char **skill_set = { "C", "Python", "Assembly?", "Javascript" }
Person hooss = {
.name = "Changmin Jung";
.age = 17;
.birth = "2007/02/13";
.from = "Korea";
.school = "Kyungpook National University High School";
.tool = "neovim";
.code_style = code_style;
.skill_set = skill_set;
};
}