Test
Code Highligh
Bash
C
1 2 3 4 5 6
| #include<stdio.h> int main() { printf("Hello World"); return 0; }
|
C++
1 2 3 4 5 6 7
| #include<iostream> using namespace std; int main() { cout << "Hello World" << endl; return 0; }
|
C Sharp
1 2 3 4 5 6 7 8 9 10
| namespace HelloWorld { class Program { static void Main(string[] args) { System.Console.Write("Hello World"); } } }
|
Java
1 2 3 4 5 6
| public class HelloWorld { public static void main(String args[]){ System.out.println( "Hello World" ); } }
|
JavaScript
1
| console.log("Hello World")
|
Python2
Python3
VB
1 2 3 4 5
| Module MainFrm Sub Main() System.Console.WriteLine("Hello World") End Sub End Module
|
Swift
Go
1 2 3 4 5
| package main import "fmt" func main() { fmt.Print("Hello World") }
|
Ruby
1 2 3
| def hello() return "Hello World" end
|
Kotlin
1 2 3
| fun main(args: Array<String>) { println("Hello world") }
|
More info: Writing
Plugins
Quote
Do not just seek happiness for yourself. Seek happiness for all. Through kindness. Through mercy.
Echarts
Image
