This website works better with JavaScript
Home
Explore
Help
Register
Sign In
packages
/
go-metrics
Watch
0
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Browse Source
Testing atomicity.
Richard Crowley
14 years ago
parent
1f505b2fae
commit
488dcee477
1 changed files
with
8 additions
and
0 deletions
Unified View
Show Diff Stats
8
0
test.go
+ 8
- 0
test.go
View File
@@ -0,0 +1,8 @@
+package main
+
+func main() {
+ var a, b int64
+ a = 47
+ b = a
+ a = b
+}