File indexing completed on 2024-05-19 04:38:18

0001 def function(a, b: {})
0002 end
0003 
0004 def foo(a: '', b: '')
0005   puts "#{a}, #{b}"
0006   puts args
0007 end
0008 
0009 foo(a: 1, b: 2, 'asd' => 1)
0010 
0011 def another(a, *b, c: '')
0012 end
0013 
0014 def yet_another(a, b = 1, *c, d: '', **e, &blk)
0015 end
0016 
0017 def yay a: 1, **; end