2001-10-11 Jeffrey Stedfast <fejj@ximian.com>
[mono.git] / README
1 This is Mono.
2
3 A directory roadmap:
4
5         doc/
6                 Contains documentation and the web site contents.
7
8         mono/
9                 The core of the executable.
10
11                 metadata/
12                         The library to deal with executables and libraries for
13                         .NET
14
15                 dis/
16                         CIL executable Disassembler
17
18                 cli/
19                         Common code for the JIT and the interpreter.
20
21                 cil/
22                         Common Intermediate Representation, XML
23                         definition of the CIL bytecodes.
24
25                 interp/
26                         Interpreter for CLI executables.
27
28 * Using Mono
29
30         Once you have installed the software, you can run a few programs:
31
32                 monodis program.exe
33
34         That will dump the bytecodes for program.exe.  Monodis support
35         a number of options that dumps various metadata tables
36         (chapter 23 of the Partition III).
37
38         You can try the interpreter like this:
39
40                 mono-int program.exe
41
42