meta_dsl.rb

Rubyマスター

Explorer

C40
C++40
C#40
Dart40
Go40
Java40
JavaScript40
Kotlin40
Objective-C40
Perl40
PHP40
Python40
R40
Ruby
初級10
中級10
上級10
エキスパート5
マスター5
meta_dsl.rb
fiber_pool.rb
concern_module.rb
refinement.rb
middleware.rb
Rust40
Shell40
Swift40
TypeScript40
meta_dsl.rb
Click to focus
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class DSL
 def self.define(&block)
   Class.new do
     instance_eval(&block)
     def self.on(event, &handler)
       (@handlers ||= {})[event] = handler
     end
     def self.call(event, *args)
       @handlers[event]&.call(*args)
     end
   end
 end
end
API = DSL.define do
 on(:get) { |path| "GET #{path}" }
end
0WPM0%0:000/317(0%)|Ln 1, Col 1
UTF-8Ruby

関連する練習問題