Ruby support #1

Open
jaroslaw wants to merge 165 commits from ruby into main
5 changed files with 20 additions and 4 deletions
Showing only changes of commit d97096bc9f - Show all commits

View file

@ -0,0 +1,7 @@
STATE = {
"called_with" => nil
}
def test_func(x)
called_with = x
end

View file

@ -0,0 +1,9 @@
STATE = {
'a_value' => nil,
'b_value' => nil
}
def test_func(a, b)
STATE['a_value'] = a
STATE['b_value'] = b
end