removed test file
This commit is contained in:
parent
16045afb21
commit
48506c69b7
1 changed files with 0 additions and 24 deletions
|
@ -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}"
|
Reference in a new issue