Hello world!
After the long break, I decided to reopen my personal blog. I used to publish my codes (and the notes especially in Turkish) before. Now I move to the UK and publishing my notes in English is better chose.
Long waiting visas and especially job hunting. I am not completely sure how I will publish the same text in it but I am going to force myself.
By the way. As a programmer. Writing the same HelloWorld code in here is a must.
1 2 3 4 5 6 7 8 |
#include <iostream> #include <string> int main() { [h = "Hello"](std::string w, char s = ' ') {std::cout << h << s << w << std::endl; }("World"); } |