summaryrefslogtreecommitdiff
path: root/doc/progs/helloworld3.go
diff options
context:
space:
mode:
Diffstat (limited to 'doc/progs/helloworld3.go')
-rw-r--r--doc/progs/helloworld3.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/progs/helloworld3.go b/doc/progs/helloworld3.go
new file mode 100644
index 000000000..540036865
--- /dev/null
+++ b/doc/progs/helloworld3.go
@@ -0,0 +1,17 @@
+// Copyright 2009 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package main
+
+import FD "fd"
+
+func main() {
+ hello := []byte{'h', 'e', 'l', 'l', 'o', ', ', ' ', 'w', 'o', 'r', 'l', 'd', '\n'};
+ FD.Stdout.Write(&hello);
+ fd, errno := FD.Open("/does/not/exist", 0, 0);
+ if fd == nil {
+ print("can't open file; errno=", errno, "\n");
+ sys.exit(1);
+ }
+}