This is my first post on the blog. Its purpose is rather limited (I won't talk about anything interesting), but I wanted to throw a little greeting out there!
Let's try out an equation:
\[ e^{i\pi} + 1 = 0 \]
And some code:
#include <iostream>
using namespace std;
class Greetings
{
public:
Greetings() { cout<< "Hello Web!" << endl; }
};
int main()
{
Greetings G;
}
No comments:
Post a Comment