My first Jekyll blog post!

less than 1 minute read

I have set up a simple Jekyll website with “minimal mistakes” theme. It is hosted by GitHub.

Let’s see if this code block works:

#include <iostream>
#include <string>
void print_hi(std::string name) {
  std::cout << "Hi, " << name << std::endl; 
}
int main() {
  print_hi("Cem"); 
}

My repository is on GitHub. This site is in a special branch called gh-pages.

I believe I will be using this post as a playground, to test blog features before posting them to real blog entries.