1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
////start c
int
////start go
////package main
////
////import "fmt"
////
////func main() {
//// fmt.Println("hello world")
////}
////start java
////import static java.lang.System.out;
////
////class Hello {
//// public static void main(String[] args) {
//// out.println("Hello, World Java...");
//// }
////}
////
////start cpp
////#include <iostream>
////#include <string>
////int main()
////{
//// std::string name = "clojure";
//// std::cout << "My name is " << name << std::endl;
////}
////start rs
////fn main() {
//// println!("Hello, World of Rusty...");
////}
////start js
////console.log("Hello, World, ja...");
////