Method: Dhall::Builtins::Natural_show#call
- Defined in:
- lib/dhall/builtins.rb
#call(nat) ⇒ Object
167 168 169 170 171 172 173 |
# File 'lib/dhall/builtins.rb', line 167 def call(nat) if nat.is_a?(Dhall::Natural) Dhall::Text.new(value: nat.to_s) else super end end |