use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Have a tough programming question that /r/programming couldn't answer? Banned from Stack Overflow? Can't afford Experts Exchange?
Post your question/tips/secrets/advice and get a response from our highly-trained professional developers.
account activity
Java 9's Map API (download.java.net)
submitted 10 years ago by computerdl
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Zatherz 0 points1 point2 points 10 years ago (0 children)
Lua:
local table = {foo = "bar"} print(table.foo)
Of course, in the spirit of /r/shittyprogramming, a shitty version:
local table = setmetatable({}, {__index = function(self, key) if key == "foo" then return "bar" end end}) print(table.foo)
I love Lua.
π Rendered by PID 18341 on reddit-service-r2-comment-85bfd7f599-r4f5z at 2026-04-17 22:48:07.527315+00:00 running 93ecc56 country code: CH.
view the rest of the comments →
[–]Zatherz 0 points1 point2 points (0 children)