Published on

Testing by deploying first page

Authors
  • avatar
    Name
    Feanor RS
    Twitter

A first post of this series...

Inline Highlighting

Sample of inline highlighting int num = 11 + 31; // answer is 42

First C++ Code Block

Will this compile?

#include <iostream>

int main()
{
    int num = 11 + 31;
    std::cout << "Hello World: " << num << "!" << std::endl;
    return 0;
}