-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelloWorld.html
37 lines (37 loc) · 1.31 KB
/
HelloWorld.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello, world!</title>
<style type="text/css">
/* highlight theme: Github Source View */
body.hl { background-color:#ffffff; }
pre.hl { color:#000000; background-color:#ffffff; font-size:10pt; font-family:'Courier New',monospace; white-space: pre-wrap; }
.hl.num { color:#0086b3; }
.hl.esc { color:#183691; }
.hl.sng { color:#183691; }
.hl.pps { color:#183691; }
.hl.slc { color:#969896; }
.hl.com { color:#969896; }
.hl.ppc { color:#a71d5d; }
.hl.opt { color:#000000; }
.hl.ipl { color:#183691; }
.hl.lin { color:#b2b2b2; user-select: none;-webkit-user-select: none; }
.hl.hvr { cursor:help; }
.hl.erm { color:#ff0000; font-weight:bold; border:solid 1px red; margin-left: 3em; }
.hl.err { color:#ff0000; font-weight:bold; }
.hl.kwa { color:#a71d5d; }
.hl.kwb { color:#0086b3; }
.hl.kwc { color:#0086b3; }
.hl.kwd { color:#0086b3; }
.hl.kwe { color:#a71d5d; }
.hl.kwf { color:#38ae50; }
</style>
</head>
<body class="hl">
<pre class="hl"><span class="hl kwa">using</span> System<span class="hl opt">;</span>
Console<span class="hl opt">.</span><span class="hl kwd">WriteLine</span><span class="hl opt">(</span><span class="hl sng">"Hello, world!"</span><span class="hl opt">);</span>
</pre>
</body>
</html>
<!--HTML generated by highlight 4.14, http://andre-simon.de/-->