-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquickstart.notebook
More file actions
30 lines (30 loc) · 871 Bytes
/
Copy pathquickstart.notebook
File metadata and controls
30 lines (30 loc) · 871 Bytes
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
[
{
"text": "<h1 class=\"ql-align-center\">Quicker start Java?</h1><p>Did you start learning the Java programming language from the following little code:</p>",
"code": null
},
{
"text": null,
"code": "public class HelloWorld {\n public static void main(String[] args) {\n System.out.println(\"Hello, World!\");\n }\n}"
},
{
"text": "<p>Now, you have the code and don't have to install Java environment in your box. You can run it here.</p>",
"code": null
},
{
"text": null,
"code": "HelloWorld.main(null);"
},
{
"text": "<p>Indeed, you can get it quicker, with just one line of code:</p>",
"code": null
},
{
"text": null,
"code": "System.out.println(\"Hello, World!\");"
},
{
"text": "<p>Not bad, you can save your notebook for your reference later.</p>",
"code": null
}
]