79766111

Date: 2025-09-16 10:34:35
Score: 1.5
Natty:
Report link
macro bind_doc()
    quote
        text(s::AbstractString) = println(s)
        
        macro text_str(str)
            interpolated = Meta.parse("\"$str\"")
            :(text($interpolated))
        end
    end |> esc
end
@bind_doc()

text"Hi $(1 + 2)"

Here is the implementation of getting Hi 3

Reasons:
  • Blacklisted phrase (1): :(
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mohsin Raza