HomeCVOther
2016
July
The very first "Hello world!" in Pascal

I always wanted to be a hacker. So at this month, when the summer break started, I heared from my friend that he started to program in Pascal. So, I thought that I should keep up. This was the moment when my very first program was written.

 ~

  program Hello;
  begin
    writeln ('Hello, world.');
  end.