summaryrefslogtreecommitdiff
path: root/sample/svr.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/svr.rb')
-rw-r--r--sample/svr.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/sample/svr.rb b/sample/svr.rb
index af566056b7..6169861abc 100644
--- a/sample/svr.rb
+++ b/sample/svr.rb
@@ -9,7 +9,7 @@ addr.shift
printf("server is on %s\n", addr.join(":"))
socks = [gs]
-while TRUE
+loop do
nsock = select(socks);
next if nsock == nil
for s in nsock[0]
@@ -23,7 +23,7 @@ while TRUE
s.close
socks.delete(s)
else
- if str = s.gets;
+ if str = s.gets
s.write(str)
end
end