diff options
Diffstat (limited to 'content/constants/float5.go')
-rw-r--r-- | content/constants/float5.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/content/constants/float5.go b/content/constants/float5.go new file mode 100644 index 0000000..2d62872 --- /dev/null +++ b/content/constants/float5.go @@ -0,0 +1,15 @@ +// +build OMIT + +package main + +import ( + "fmt" + "math" +) + +func main() { + // START OMIT + pi := math.Pi + fmt.Println(pi) + // STOP OMIT +} |