Hacker News new | ask | show | jobs
by ec109685 219 days ago
They wrap bash with python.
1 comments

I still suspect JS. It's much harder to shoot yourself in the foot with Python. Even if you use JSON:

  >>> json.loads('{"nr": 348555896224571969}')
  {'nr': 348555896224571969}
  >>> type(_['nr'])
  <class 'int'>
TIL that in the python REPL `_` automatically has the previous expr's result. That's cool