My First Post

New blog Hello everyone. I switched from Jekyll to Hugo. I changed template, hosting, and domain as well. I may explain why I decided this and changed in the future.

My Thoughts About Go After 2,5 Months

I’ve been writing Go for 2,5 months. I started to write Go with my new job. After leaving my part-time job, I’ve started to work in a company, SabancıDx, as a software engineer. In this company, I have been involved a newly started project which is being written in Go. How I learned? I firstly completed Go Tour. In my opinion, Go Tour is the best starting point for learning Go.

JavaScript - Intro

I have started to learn JavaScript from scratch and I decided to write a blog to share what I learned in this process. What is JavaScript? JavaScript is a programmin language that gives behavior to the programs. We give some functionalities to the web pages or mobile application with JavaScript. Printing output We start programming with “Hello World!” message. To print out something on the screen is important to write “Hello World” message.

Subprograms

Introduction In this article, I am going to explain subprograms in programming languages. Subprogram provides some abstraction while building a program. When we write a program, we want to reuse statements in different places and different times. In modern programming language, we collect all statements in a subprogram. It will give us some conveniences like memory space, coding time, and reusable codes. We call the subprogram from several places in our code blocks and details are hidden by calling only subprogram.