summaryrefslogtreecommitdiff
path: root/src/lib/math/const.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/math/const.go')
-rw-r--r--src/lib/math/const.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/math/const.go b/src/lib/math/const.go
new file mode 100644
index 000000000..a1c5f8e1a
--- /dev/null
+++ b/src/lib/math/const.go
@@ -0,0 +1,9 @@
+// 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 math
+
+export const (
+ Sqrt2 = 1.41421356237309504880168872420969808;
+)