]> Cypherpunks repositories - gostls13.git/commitdiff
- moved integer code into src/pkg
authorRobert Griesemer <gri@golang.org>
Thu, 26 Jun 2008 23:52:15 +0000 (16:52 -0700)
committerRobert Griesemer <gri@golang.org>
Thu, 26 Jun 2008 23:52:15 +0000 (16:52 -0700)
SVN=125003

src/pkg/integer.go [moved from test/integer.go with 100% similarity]
src/pkg/make.bash [new file with mode: 0644]
src/pkg/test_integer.go [moved from test/test_integer.go with 100% similarity]

similarity index 100%
rename from test/integer.go
rename to src/pkg/integer.go
diff --git a/src/pkg/make.bash b/src/pkg/make.bash
new file mode 100644 (file)
index 0000000..71d6ccd
--- /dev/null
@@ -0,0 +1,14 @@
+# 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.
+
+#!/bin/bash
+
+# clean
+rm -f *.6 6.out test_integer
+
+# integer package
+6g integer.go
+6g test_integer.go
+6l -o test_integer integer.6 test_integer.6
+./test_integer
similarity index 100%
rename from test/test_integer.go
rename to src/pkg/test_integer.go