removed test file

This commit is contained in:
Jeena Paradies 2011-04-13 03:57:18 +02:00
parent 16045afb21
commit 48506c69b7

View file

@ -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}"