by kennethfriedman on 7/26/19, 8:10 PM with 17 comments
by kennethfriedman on 7/27/19, 3:41 AM
This IDE started as a final project in Gerry Sussman's LISP class at MIT.
When programming and debugging, you often want to know what your code is going to do without the possibility of unintended side effects (state change) by actually running the code.
Towards this goal, we added a concept we call "preview execution." That is: you can preview the output of code in our IDE simply by highlighting a section of code. The IDE will show the output of the highlighted section, but when you de-select the section, there are no side effects: no state is changed in the Scheme instance.
It's downloadable as a Mac app, but also open source. Would love to hear people's thoughts on it!
by 0xferruccio on 7/27/19, 11:42 AM
I really liked the first version and did some research some time ago on how to make this usable by a wider audience: https://ferrucc.io/posts/a-new-ide/
by dap232 on 7/27/19, 7:07 AM
by jedberg on 7/27/19, 6:53 AM
I have MIT scheme installed on the system. How do I tell it where to find Scheme?
Or better yet, any chance you can just package up the interpreter with the IDE, or make that an optional download?
by gkbrk on 7/27/19, 5:30 AM
by FraserGreenlee on 7/27/19, 12:48 PM
by dimitar on 7/27/19, 9:49 AM
by Y_Y on 7/27/19, 7:21 AM