7 lines
90 B
Ruby
7 lines
90 B
Ruby
$state = {
|
|
'called_with' => nil
|
|
}
|
|
|
|
def test_func(val)
|
|
$state['called_with'] = val
|
|
end
|