Skip to content

Commit f0469c4

Browse files
committed
Create helloworld file
1 parent e2883ef commit f0469c4

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

helloworld.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
```C
2+
#include <stdio.h>
3+
4+
int main(void)
5+
{
6+
puts("Hello, World!");
7+
return 0;
8+
}
9+
```
10+
```C++
11+
#include <iostream>
12+
13+
int main()
14+
{
15+
std::cout << "Hello, World!" << std::endl;
16+
return 0;
17+
}
18+
```
19+
```D
20+
import std.stdio;
21+
22+
void main()
23+
{
24+
writeln("Hello, World!");
25+
}
26+
```

0 commit comments

Comments
 (0)