languages 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. * Compilers for other languages
  2. Here are some other free compilers for other languages that
  3. target .NET and should work with Mono with no problem:
  4. <ul>
  5. * <a href="#ComponentPascal">Component Pascal</a>
  6. * <a href="#MonoLogo">MonoLogo</a>
  7. * <a href="#Oberon">Oberon</a>
  8. * <a href="#Forth">Forth</a>
  9. * <a href="#mbas">Mono Basic</a> (Mono's VB.NET compiler)
  10. </ul>
  11. Languages which are known to run, but we have not done a
  12. complete ran of all their regression tests to validate it:
  13. <ul>
  14. * Kylix.NET.
  15. </ul>
  16. Languages we would like to have supported, with links to resources:
  17. <ul>
  18. * <a href="#JavaScript">Java Script</a>
  19. * <a href="#java.html">Java</a>
  20. * <a href="#c">C</a>
  21. </ul>
  22. Some experimental languages:
  23. <ul>
  24. * <a href="#Tachy">Tachy</a> (scheme-like)
  25. </ul>
  26. <a name="Java">
  27. ** Java
  28. There is a very interesting project to make a JavaVM for .NET
  29. <a href="http://radio.weblogs.com/0109845/">here</a>.
  30. Currently this will not work with Mono, as they use some
  31. pieces of Managed C++ to implement the JNI interface.
  32. A workaround has been discussed, contact the author if you want to contribute.
  33. <a name="MonoLogo">
  34. ** MonoLogo
  35. An implementation of Logo for Mono (and .NET)
  36. The <A href="http://monologo.sf.net">Mono Logo</a> compiler is
  37. hosted in the <a href="ccvs.html">Mono CVS</a> repository
  38. and also available on the <a href="anoncvs.html">AnonCVS</a> mirrors.
  39. <a name="mbas">
  40. ** Mono Basic (Mono's VB.NET compiler)
  41. Work has resumed on the Mono Visual Basic compiler (currently
  42. called mbas). It is part of the standard Mono distribution,
  43. but its still an early compiler.
  44. <a name="Oberon">
  45. ** Oberon
  46. This Oberon compiler is written in Oberon.NET (another self
  47. hosting compiler).
  48. The main site <a href="http://www.oberon.ethz.ch/oberon.net/">http://www.oberon.ethz.ch/oberon.net/</a>
  49. Download:
  50. <a href="http://www.oberon.ethz.ch/oberon.net/download/">http://www.oberon.ethz.ch/oberon.net/download/</a>
  51. Examples:
  52. <a href="http://www.oberon.ethz.ch/oberon.net/examples/">http://www.oberon.ethz.ch/oberon.net/examples/</a>
  53. <a href="http://www.superin.formativ.net/mono/oberon/oberon.zip">http://www.superin.formativ.net/mono/oberon/oberon.zip</a>
  54. <a name="ComponentPascal">
  55. ** Component Pascal
  56. The Component Pascal compiler: <a
  57. href="http://www2.fit.qut.edu.au/CompSci/PLAS/ComponentPascal">Home
  58. Page</a>, you can <a
  59. href="http://www2.fit.qut.edu.au/CompSci/PLAS/ComponentPascal/gpcp1.1.4-netRTM.zip">
  60. download it</a>
  61. <a name="Forth">
  62. ** Delta Forth
  63. The Delta Forth.NET project: <a
  64. href="www.dataman.ro/dforth">Home
  65. Page</a> and <a href="http://www.dataman.ro/dforth/index.html">more
  66. details here</a>.
  67. <a name="Tachy">
  68. ** Tachy
  69. A subset of Scheme language called <a
  70. href="http://radio.weblogs.com/0101156/stories/2002/03/19/tachy.html">Tachy</a>
  71. * Missing languages
  72. Here is a list of a few languages that we would like to see
  73. supported. We will try to maintain a set of links here with
  74. technical information for those interested in porting,
  75. implementing or adapting a compiler for any of these
  76. languages:
  77. <a name="JavaScript">
  78. * Java Script
  79. The Mozilla project has an implementation of JavaScript
  80. written in Java called <a
  81. href="http://www.mozilla.org/rhino/">Rhino</a>.
  82. You could port this code from Java to C#.
  83. Note that since JavaScript allows for evaluation at runtime,
  84. the compiler has to be built as a class that can be invoked at
  85. runtime.
  86. <a name="c">
  87. * C
  88. Ideally GCC could be modified to generate CIL, but it is a
  89. big task. That would give us various compilers in one pass.
  90. <a href="http://www.cs.princeton.edu/software/lcc">LCC</a> 4.2
  91. has been recently released. This release adds support for compiling
  92. ANSI C programs to CIL. Note that the CIL support only works on Win32
  93. right now, but should be easy to convert to Mono/other architectures.
  94. LCC is not an open source compiler, but it is free as long as you
  95. do not profit from selling it.
  96. <a name="Java">
  97. * Java
  98. We have a <a href="java.html">separate page</a> for Java.