mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-10 22:20:51 +00:00
34 lines
268 B
Ruby
34 lines
268 B
Ruby
![]() |
foo
|
||
|
.asdasd
|
||
|
.proc do |**args|
|
||
|
p(**args)
|
||
|
end
|
||
|
|
||
|
foo
|
||
|
.asdasd
|
||
|
.proc { |**args|
|
||
|
p(**args)
|
||
|
}
|
||
|
|
||
|
bar.foo do
|
||
|
bar
|
||
|
end
|
||
|
|
||
|
bar.foo(tee) do
|
||
|
bar
|
||
|
end
|
||
|
|
||
|
bar.foo(tee) {
|
||
|
bar
|
||
|
}
|
||
|
|
||
|
x.foo do
|
||
|
foo
|
||
|
end.bar do
|
||
|
bar
|
||
|
end
|
||
|
|
||
|
# Local Variables:
|
||
|
# ruby-block-indent: nil
|
||
|
# End:
|