Projects

Ticket #664: test.rb

File test.rb, 188 bytes (added by dylan@…, 2 years ago)

simple test case

Line 
1def main_thread( &block )
2  block.performSelectorOnMainThread( 'call', withObject: nil, waitUntilDone: true )
3end
4
5Thread.new do 
6  main_thread do 
7    [1,2,3].each {|i| puts i }
8  end
9end