Skip to main content

Command Palette

Search for a command to run...

Hello World

Test Post

Published
1 min read

this.

self.

This is my first post in HASHNODE

This is purely for testing purpose

Python hello world

this would probably be the simplest one

print('hello world')

C++

#include <iostream>

int main() {
    std::cout<<"hello world\n";
    return 0;
}