diff --git a/games/Pong-bots/test.rb b/games/Pong-bots/test.rb deleted file mode 100644 index c690e04..0000000 --- a/games/Pong-bots/test.rb +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/ruby - -def func1 - i=0 - while i<=2 - puts "func1 at: #{Time.now}" - sleep(2) - i=i+1 - end -end - -def func2 - j=0 - while j<=2 - puts "func2 at: #{Time.now}" - sleep(1) - j=j+1 - end -end - -puts "Started At #{Time.now}" -t1=Thread.new{func1()} -t2=Thread.new{func2()} -puts "End at #{Time.now}" \ No newline at end of file