Tcl vs MonoDevelop
When comparing Tcl vs MonoDevelop, the Slant community recommends MonoDevelop for most people. In the question“What are the best tools for making a cross-platform application?” MonoDevelop is ranked 6th while Tcl is ranked 13th. The most important reason people chose MonoDevelop is:
MonoDevelop is free to download and use.
Specs
Ranked in these QuestionsQuestion Ranking
Pros
Pro Standard library
Unlike *sh Tcl has a rich standard library.
Pro Sane quoting rules
Unlike in sh you don't need to quote your variable substitutions ('"$1"').
Expanding of arguments occurs mostly explicit and if yet expected in-place (e. g. using eval
or subst
) it follows strict and well clear rules.
So exec test $argv
would execute test with single argument.
And appending {*} before $argv
would execute test with all arguments (list expansion).
Pro Cross-platform
With a little care you can have the same script work on Linux, *BSD, OS X and Windows.
Pro Widely available
You can expect a reasonably recent version of Tcl to either installed or available in the repositories of any popular open source *nix.
Pro Everything is a string
Tcl can operate at the same level of abstraction as the POSIX shell, which makes it easier to manipulate the output of other programs.
Pro Tk and Expect
Pro Standalone packages
Tcl enables easy deployment through self-contained binaries known as starpacks.
Pro Rich scripting capabilities on a single line
Want to run something 5 times? Here you go: set i 0; time { puts done-[incr i] } 5
If you need real conditional cycle? Not a problem: for {set ready 0; set i 1} {$i <= 100 && !$ready} {incr i} { if {[exec do-some-thing] eq "ready" } {set ready 1} }
Want to measure performance of something or repeat it max 300 times and not longer than 1 seconds? Very simple: timerate { after 20 } 1000 300
How about notifying yourself when some http-server is back online? Sure thing: while {[catch { close [socket localhost 80] }]} { after 1000 }; puts "\7\7\7ONLINE!"
And you can do it also fully asynchronously using events etc.
Pro Free
MonoDevelop is free to download and use.
Pro Starting up this program doesn't take as long as starting Visual Studio windows 98
Cons
Con No longer supported (deprecated since 2018)
Starting with version 4.x, Xamarin rebranded MonoDevelop as Xamarin Studio, but only for the Windows version of the IDE.
Stable release
7.6.9.22 / September 21, 2018
Con Bad formatting
MonoDevelop doesn't offer much in terms of autocompletion and code formatting. Most of the time the automatic formatting that MonoDevelop does is annoying and not really compliant with C# guidelines.
Con The MonoDevelop version that ships with Unity is several versions behind
The version of MonoDevelop that ships with Unity is several versions behind the main MonoDevelop branch. It also gets updated very rarely so any annoying bugs that it may have take a lot of time to get fixed.