Skip to content

Latest commit

 

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