Skip to content

Files

Latest commit

 Cannot retrieve latest commit at this time.

History

History
16 lines (10 loc) · 206 Bytes

print-formatted-with-debug.md

File metadata and controls

16 lines (10 loc) · 206 Bytes

Print formatted with debug

def debug(name, content)
  p "%s:  %p" % [name, content]
end

debug "Num", 42

# Result:
# "Num:  42"

View Source