Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
25a2b362
Commit
25a2b362
authored
Jan 30, 2009
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
needless semicolons
R=rsc DELTA=2 (0 added, 0 deleted, 2 changed) OCL=23967 CL=23970
parent
122ed3e9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
server.go
doc/progs/server.go
+1
-1
server1.go
doc/progs/server1.go
+1
-1
No files found.
doc/progs/server.go
View file @
25a2b362
...
...
@@ -9,7 +9,7 @@ type request struct {
replyc
chan
int
;
}
type
binOp
func
(
a
,
b
int
)
int
;
type
binOp
func
(
a
,
b
int
)
int
func
run
(
op
binOp
,
req
*
request
)
{
reply
:=
op
(
req
.
a
,
req
.
b
);
...
...
doc/progs/server1.go
View file @
25a2b362
...
...
@@ -9,7 +9,7 @@ type request struct {
replyc
chan
int
;
}
type
binOp
func
(
a
,
b
int
)
int
;
type
binOp
func
(
a
,
b
int
)
int
func
run
(
op
binOp
,
req
*
request
)
{
reply
:=
op
(
req
.
a
,
req
.
b
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment