[Mono-list] Setting mono in LinuxPPC

Miguel de Icaza miguel@ximian.com
13 Feb 2002 17:07:02 -0500


> On Wed, 2002-02-13 at 11:05, Radek Doulík wrote:
>  
> > Then 'source ~/bin/gnome-head' before running autogen.sh should do the
> > trick.
> Yep. It did and it compiles fine. Now. What's  next?
> Is there some kind of test to see mono in action?
> Some test suite?

Radek is right, you can get the runtime (the various .dlls) from the
Mono 0.8 release, just type `make install' on that, and you should be
set.

As to sample programs, the best you can use now is the Mono C# compiler,
type:

bash$ echo 'using System; " > a.cs
bash$ echo "class X { static void Main () { " >> a.cs
bash$ echo "Console.WriteLine ("Hello"); } }" >> a.cs
bash$ mcs a.cs
bash$ mono a.exe

Or you need Windows to compile all of the test suites.  

Something we should look into is shipping nice "demos".  Anyone
interested?

Best wishes,
Miguel.