Hello World
First post
Hello! Welcome to my Pages!
These Pages are a place for any person to keep tabs on what I’ve been doing in the past and am currently working on. So if that interests you, welcome :D
I think about this website as an opportunity to share:
ideas
about programming, music or the overall world and things that I enjoy.projects
that I’ve done in the past or am currently working on.studies
on certain fields that I’m currently interested.
Not wanting to be too garrulous, I’ll leave you with one of my favorite c++ code snippets:
1
2
3
4
5
6
7
8
9
10
int main () {
int w = 40;
while(1){
for (int i=1;i<=w*(w+1);i++)
printf(
"%c",
i % (w+1) == 0 ? '\n' :
i % (w) == 0 || i % (w+2) == 1 ? '*' : ' ');
}
}
Try it out on this online compiler to check out what it does.
This post is licensed under CC BY 4.0 by the author.