show/hide this revision's text 3 Fixed typos.

We use Smalltalk to implement two different versions of BASIC.

The first is called Liberty BASIC. We've been selling this since 1992 and it is developed in Smalltalk/V. It currently runs only on Windows but we are porting it to VisualWorks Smalltalk. Have have a demo-able version that runs on Windows, Mac and Linux.

The second is called Run BASIC which is a web programming language and appserver designed to appeal to the BASIC programmer. This is built on VisualWorks and uses Seaside to implement the web user interface. It runs on Windows, Mac and Linux. Seaside allows us to develop Run BASIC in a way very similar to a desktop app, and it allows us to provide a version of BASIC for the web that doesn't force the programmer to deal with web-isms.

Pros: Over the years many people have asked me why I develop programming languages in Smalltalk. Given my limited time resources I'd say that if I had to develop in C/C++ the software wouldn't exist. Smalltalk is an extremely productive language. It lets your write very English-like code, it has powerful metaprogramming features that come in very handy when crafting compilers, runtime systems, debuggers, etc. and it is extremely interactive. If a runtime error stops your program the debuggers debugger opens in a live stack. You can see what caused the error, but it doesn't stop there. You can often fix the code right on the spot and continue running without needing to restart your app. Very few systems can do this.

Cons: I would have to say that the seamless cross platform support can be an issue because you lose tight OS integration especially in the area of graphics and GUI features. Also as some others have mentioned, deployment is harder than it should be.

In the 90's I used Smalltalk to build a complete soup to nuts factory management system for a circuitboard shop that managed everything from quotations, order engineering, job tracking, defect management, reworks, shipping, reorders, etc. It had a built-in email system, reporting language, and customizable views for each user. This whole system ran on a single 486 with 16MB RAM and drove 32 serial ports with 3 printers and 29 terminals with very comfortable interactive performance. Smalltalk allowed me to develop and debug this system as people used it. I did not need to restart the system to install new features and bug fixes. If a user process crashed, the debugger would open on my monitor and I could debug it live. The user's terminal would restart automatically.

For the same circuitboard factory I implemented a CNC machine simulator and editor in Smalltalk. A special text editor understood CNC drilling and routine programs, and the similator simulator allowed engineers to do a visual check and saved lots of time and money on the factory floor.

I could go on. Smalltalk is awesome.

show/hide this revision's text 2 Extended pros and cons.

We use Smalltalk to implement two different versions of BASIC.

The first is called Liberty BASIC. We've been selling this since 1992 and it is developed in Smalltalk/V. It currently runs only on Windows but we are porting it to VisualWorks Smalltalk. Have have a demo-able version that runs on Windows, Mac and Linux.

The second is called Run BASIC which is a web programming language and appserver designed to appeal to the BASIC programmer. This is built on VisualWorks and uses Seaside to implement the web user interface. It runs on Windows, Mac and Linux. Seaside allows us to develop Run BASIC in a way very similar to a desktop app, and it allows us to provide a version of BASIC for the web that doesn't force the programmer to deal with web-isms.

Pros: Over the years many people have asked me why I develop programming languages in Smalltalk. Given my limited time resources I'd say that if I had to develop in C/C++ the software wouldn't exist. Smalltalk is an extremely productive language. It lets your write very English-like code, it has powerful metaprogramming features that come in very handy when crafting compilers, runtime systems, debuggers, etc. and it is extremely interactive. If a runtime error stops your program the debuggers opens in a live stack. You can what caused the error, but it doesn't stop there. You can often fix the code right on the spot and continue running without needing to restart your app. Very few systems can do this.

Cons: I would have to say that the seamless cross platform support can be an issue because you lose tight OS integration especially in the area of graphics and GUI features. Also as some others have mentioned, deployment is harder than it should be.

In the 90's I used Smalltalk to build a complete soup to nuts factory management system for a circuitboard shop that managed everything from quotations, order engineering, job tracking, defect management, reworks, shipping, reorders, etc. It had a built-in email system, reporting language, and customizable views for each user. This whole system ran on a single 486 with 16MB RAM and drove 32 serial ports with 3 printers and 29 terminals with very comfortable interactive performance. Smalltalk allowed me to develop and debug this system as people used it. I did not need to restart the system to install new features and bug fixes. If a user process crashed, the debugger would open on my monitor and I could debug it live. The user's terminal would restart automatically.

For the same circuitboard factory I implemented a CNC machine simulator and editor in Smalltalk. A special text editor understood CNC drilling and routine programs, and the similator allowed engineers to do a visual check and saved lots of time and money on the factory floor.

I could go on. Smalltalk is awesome.

show/hide this revision's text 1

We use Smalltalk to implement two different versions of BASIC.

The first is called Liberty BASIC. We've been selling this since 1992 and it is developed in Smalltalk/V. It currently runs only on Windows but we are porting it to VisualWorks Smalltalk. Have have a demo-able version that runs on Windows, Mac and Linux.

The second is called Run BASIC which is a web programming language and appserver designed to appeal to the BASIC programmer. This is built on VisualWorks and uses Seaside to implement the web user interface. It runs on Windows, Mac and Linux. Seaside allows us to develop Run BASIC in a way very similar to a desktop app, and it allows us to provide a version of BASIC for the web that doesn't force the programmer to deal with web-isms.

Over the years many people have asked me why I develop programming languages in Smalltalk. Given my limited time resources I'd say that if I had to develop in C/C++ the software wouldn't exist. Smalltalk is an extremely productive language. It lets your write very English-like code, it has powerful metaprogramming features that come in very handy when crafting compilers, runtime systems, debuggers, etc. and it is extremely interactive. I would have to say that the seamless cross platform support can be an issue because you lose tight OS integration especially in the area of graphics and GUI features.

In the 90's I used Smalltalk to build a complete soup to nuts factory management system for a circuitboard shop that managed everything from quotations, order engineering, job tracking, defect management, reworks, shipping, reorders, etc. It had a built-in email system, reporting language, and customizable views for each user. This whole system ran on a single 486 with 16MB RAM and drove 32 serial ports with 3 printers and 29 terminals with very comfortable interactive performance. Smalltalk allowed me to develop and debug this system as people used it. I did not need to restart the system to install new features and bug fixes. If a user process crashed, the debugger would open on my monitor and I could debug it live. The user's terminal would restart automatically.

For the same circuitboard factory I implemented a CNC machine simulator and editor in Smalltalk. A special text editor understood CNC drilling and routine programs, and the similator allowed engineers to do a visual check and saved lots of time and money on the factory floor.