aboutsummaryrefslogtreecommitdiff
path: root/content/constants/numbers2.go
diff options
context:
space:
mode:
Diffstat (limited to 'content/constants/numbers2.go')
-rw-r--r--content/constants/numbers2.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/content/constants/numbers2.go b/content/constants/numbers2.go
new file mode 100644
index 0000000..33b7de0
--- /dev/null
+++ b/content/constants/numbers2.go
@@ -0,0 +1,12 @@
+// +build OMIT
+
+package main
+
+import "fmt"
+
+func main() {
+ // START OMIT
+ var f = 'a' * 1.5
+ fmt.Println(f)
+ // STOP OMIT
+}