Syntax Highlighting
C
1```c
2void hello_world() {
3 printf("hello, world!");
4}
5```
1void hell_world() {
2 printf("hello, world!");
3}
Go
1```go
2func helloWorld() {
3 println("hello, World!")
4}
5```
1func helloWorld() {
2 println("hello, World!")
3}
javascript
1```javascript
2function helloWorld() {
3 console.log("hello, world!")
4}
5```
1function helloWorld() {
2 console.log("hello, world!");
3}
python
1```python
2def hello_world:
3 print("hello, world!")
4```
1def hell_world:
2 print("hello, world!")