Post

init blog

init blog

a “hello world” program

cpp program

1
2
3
4
5
6
7
#include <iostream>

int main() 
{
    std::cout << "Hello, World!" << std::endl;
    return 0;
}

python program

1
print("Hello, World!")

Diagram

plantuml

demo plantuml

AABB
1
2
3
4
```plantuml
@startuml
A --> B
@enduml

sequenceDiagram  

    participant A as a
    participant B as b
    A->>B : target

1
2
3
4
5
6
7
8
```mermaid

sequenceDiagram  

    participant A as a
    participant B as b
    A->>B : target

This post is licensed under CC BY 4.0 by the author.

Trending Tags