aboutsummaryrefslogtreecommitdiff
path: root/themes/even/exampleSite/content/post/syntax-highlighting.md
diff options
context:
space:
mode:
authorJulio Capote <jcapote@gmail.com>2018-11-06 02:49:16 +0000
committerJulio Capote <jcapote@gmail.com>2018-11-06 02:49:16 +0000
commita62a3e7755579d93ce3a87243dd277575930fffe (patch)
tree6d074f7294c5b7a45bed7ac229a6802830da2a04 /themes/even/exampleSite/content/post/syntax-highlighting.md
downloadcapotej.com-a62a3e7755579d93ce3a87243dd277575930fffe.tar.gz
init
Diffstat (limited to 'themes/even/exampleSite/content/post/syntax-highlighting.md')
-rw-r--r--themes/even/exampleSite/content/post/syntax-highlighting.md100
1 files changed, 100 insertions, 0 deletions
diff --git a/themes/even/exampleSite/content/post/syntax-highlighting.md b/themes/even/exampleSite/content/post/syntax-highlighting.md
new file mode 100644
index 0000000..b2f0770
--- /dev/null
+++ b/themes/even/exampleSite/content/post/syntax-highlighting.md
@@ -0,0 +1,100 @@
+---
+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"]
+
+toc: false
+
+---
+
+
+```js
+function helloWorld () {
+ alert("Hello, World!")
+}
+```
+
+<!--more-->
+
+```java
+public class HelloWorld {
+ public static void main(String[] args) {
+ System.out.println("Hello, World!");
+ }
+}
+```
+
+```kotlin
+package hello
+
+fun main(args: Array<String>) {
+ 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!")
+```