|
|
|
|
|
by itishappy
425 days ago
|
|
Totally serious. I'm not claiming it's the best, but it's how I use the tools. There's a few reasons: 1. It's just how I learned. Googled my way through Python, then learned Haskell much later via a book which explicitly recommends using the REPL to get info about functions. 2. Types. I'm typically only looking for type information. A quick `:t` or `:i` is usually all I need in Haskell. I know Python half has them now, but I'm not 3. I'm certainly weird here, but I turn autocomplete and other pop-ups off. I find it distracting, and prefer the more intentional action of typing stuff into a REPL. Heck, I even do it in the VSCode terminal. In summary: IDK, weird I guess. I should probably use it more in Python. |
|