Post

First thoughts

Welcome to My Blog !!

Introduction

Hello and welcome to my blog! Here, I’ll be sharing my thoughts, experiences, and insights on various topics ranging from technology to literature. I will mainly talk about malware analysis, and the main programming languages that I am going to discuss will be C++ and Python.

1
2
3
4
def greet():
    print("Hello, friend!")

greet()
1
2
3
4
5
6
7
8
9
10
#include <iostream>

void greet() {
    std::cout << "Hello, friend!" << std::endl;
}

int main() {
    greet();
    return 0;
}
This post is licensed under CC BY 4.0 by the author.