You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fn on_click { |btn, callback|
# run the callback when the button is clicked
}on_click(my_btn){puts("clicked!")}fn map { |array, f|
# for each element in array, apply f
}map([1,2,3]){ |element| element *2}