File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ web.go should be familiar to people who've developed websites with higher-level
10
10
* Secure cookies
11
11
* Support for fastcgi and scgi
12
12
* Web applications are compiled to native code. This means very fast execution and page render speed
13
- * Serving static files
13
+ * Efficiently serving static files
14
14
15
15
## Installation
16
16
@@ -43,8 +43,12 @@ To compile it from source:
43
43
44
44
To run the application, put the code in a file called hello.go and run:
45
45
46
- 8g hello.go && 8l -o hello hello.8 && ./hello
46
+ 6g hello.go && 6l -o hello hello.6 && ./hello
47
+
48
+ If you're running on a 32-bit OS, the commend is:
47
49
50
+ 8g hello.go && 8l -o hello hello.8 && ./hello
51
+
48
52
You can point your browser to http://localhost:9999/world .
49
53
50
54
### Getting parameters
You can’t perform that action at this time.
0 commit comments