mirror of
https://git.adityakumar.xyz/hugo-theme-even.git
synced 2025-02-23 12:30:03 +00:00
99 lines
1.3 KiB
Markdown
99 lines
1.3 KiB
Markdown
![]() |
---
|
||
|
title: "Syntax Highlighting"
|
||
|
date: 2011-08-30T16:01:23+08:00
|
||
|
lastmod: 2017-08-30T16:01:23+08:00
|
||
|
draft: false
|
||
|
tags: ["preview", "Syntax Highlighting", "tag-5"]
|
||
|
categories: ["Syntax Highlighting"]
|
||
|
|
||
|
# you can close something for this content if you open it in config.toml.
|
||
|
comment: false
|
||
|
toc: false
|
||
|
# reward: false
|
||
|
mathjax: false
|
||
|
|
||
|
# you can define another contentCopyright. e.g. contentCopyright: "This is an another copyright."
|
||
|
# contentCopyright: false
|
||
|
---
|
||
|
|
||
|
|
||
|
```js
|
||
|
function helloWorld () {
|
||
|
alert("Hello, World!")
|
||
|
}
|
||
|
```
|
||
|
|
||
|
<!--more-->
|
||
|
|
||
|
```java
|
||
|
public class HelloWorld {
|
||
|
public static void main(String[] args) {
|
||
|
System.out.println("Hello, World!");
|
||
|
}
|
||
|
}
|
||
|
```
|
||
|
|
||
|
```c
|
||
|
#include <stdio.h>
|
||
|
|
||
|
/* Hello */
|
||
|
int main(void){
|
||
|
printf("Hello, World!");
|
||
|
return 0;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
```cpp
|
||
|
// 'Hello World!' program
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
int main(){
|
||
|
std::cout << "Hello World!" << std::endl;
|
||
|
return 0;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
```cs
|
||
|
using System;
|
||
|
class HelloWorld{
|
||
|
public static void Main(){
|
||
|
System.Console.WriteLine("Hello, World!");
|
||
|
}
|
||
|
}
|
||
|
```
|
||
|
|
||
|
```html
|
||
|
<html>
|
||
|
<body>
|
||
|
Hello, World!
|
||
|
</body>
|
||
|
</html>
|
||
|
```
|
||
|
|
||
|
```go
|
||
|
package main
|
||
|
import fmt "fmt"
|
||
|
|
||
|
func main()
|
||
|
{
|
||
|
fmt.Printf("Hello, World!\n");
|
||
|
}
|
||
|
```
|
||
|
|
||
|
```scala
|
||
|
object HelloWorld with Application {
|
||
|
Console.println("Hello, World!");
|
||
|
}
|
||
|
```
|
||
|
|
||
|
```php
|
||
|
<?php
|
||
|
echo 'Hello, World!';
|
||
|
?>
|
||
|
```
|
||
|
|
||
|
```python
|
||
|
print("Hello, World!")
|
||
|
```
|