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