Hacker News new | ask | show | jobs
by mistaken 1799 days ago
It's possible to execute statements in a lambda through exec. But it's more of hack than what it worth.

  print((lambda x: [exec('x = x + 1; result = x'), eval('result')][1])(1))