Hacker News new | ask | show | jobs
by rat 5358 days ago

    "r#{5}"
or in actual use something like

    "I have #{me.num_of_children}\n"
much better then Auto conversion In python

    "I have " + str(me.num_of_sons) + "and " + str(me.num_of_daughters) +"\n"
does get annoying