@@ -3,14 +3,14 @@ A Python Interpreter written in Rust :snake: :scream: :metal:.
3
3
4
4
[ ![ Build Status] ( https://travis-ci.org/RustPython/RustPython.svg?branch=master )] ( https://travis-ci.org/RustPython/RustPython )
5
5
6
- # Usage (Not implemented yet)
6
+ # Usage
7
7
8
8
To test RustPython, do the following:
9
9
10
10
$ git clone https://github.com/RustPython/RustPython
11
11
$ cd RustPython
12
12
$ cargo run demo.py
13
- 42
13
+ Hello, RustPython!
14
14
15
15
Or use the interactive shell:
16
16
@@ -19,9 +19,9 @@ Or use the interactive shell:
19
19
>>>>> 2+2
20
20
4
21
21
22
- Or use pip to install extra modules:
22
+ <!-- Or use pip to install extra modules:
23
23
24
- $ cargo run -m pip install requests
24
+ $ cargo run -m pip install requests -->
25
25
26
26
# Goals
27
27
@@ -30,12 +30,12 @@ Or use pip to install extra modules:
30
30
31
31
# Code organization
32
32
33
- - ` parser` : python lexing, parsing and ast
34
- - `vm` : python virtual machine
35
- - ` src` : using the other subcrates to bring rustpython to life.
36
- - ` docs` : documentation (work in progress)
37
- - ` py_code_object` : CPython bytecode to rustpython bytecode convertor (work in progress)
38
- - ` tests` : integration test snippets
33
+ - parser: python lexing, parsing and ast
34
+ - vm : python virtual machine
35
+ - src: using the other subcrates to bring rustpython to life.
36
+ - docs: documentation (work in progress)
37
+ - py_code_object: CPython bytecode to rustpython bytecode convertor (work in progress)
38
+ - tests: integration test snippets
39
39
40
40
# Community
41
41
0 commit comments