My First Article

Chapter 1

1
2
3
4
5
6
7
#include <stdio.h>

int main()
{
printf("Hello, World!\n");
return 0;
}

Chapter 2

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

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

Chapter 3

script
1
2
#!/usr/bin/bash
echo "Hello, World!"

Chapter 4

1
2
#!/usr/bin/ruby
puts "Hello, World!"

Chapter 5

1
2
#!/usr/bin/python
print("Hello, World!")

本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!