Skip to content

Instantly share code, notes, and snippets.

@yangshun
Last active December 7, 2019 10:22
<!--DOCUSAURUS_CODE_TABS-->
<!--JavaScript-->

```js
console.log('Hello, world!');
```
<!--Python-->

```py
print('Hello, world!')
```

<!--C-->

```C
#include <stdio.h>

int main() {
   printf("Hello World!");
   return 0;
}
```

<!--Pascal-->

```Pascal
program HelloWorld;
begin
  WriteLn('Hello, world!');
end.
```

<!--END_DOCUSAURUS_CODE_TABS-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment