Skip to content

Commit 5d75944

Browse files
committed
suggested content for homepage
1 parent ae74c4a commit 5d75944

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Diff for: index.markdown

+7-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
44

55
layout: home
6-
explainer: "Edit this in index.markdown file. Lorem ipsum dolor sit amet consectetur adipisicing elit. Nisi mollitia delectus explicabo architecto velit neque nostrum nesciunt maxime laboriosam modi? Quisquam eveniet mollitia, in perspiciatis quod voluptatibus eligendi quia quidem."
6+
explainer: "CPython is the reference implementation of Python. We love C, but we love Rust a little more 😉... that's why we are creating a Rust Implementation of Python. We are doing it for fun, to learn and to have a useful + usable and maybe a better implementation of Python in Rust."
77

88
build-from-source-link: https://github.com/RustPython/RustPython
99

@@ -23,8 +23,11 @@ goals:
2323
- goal: "Fast, reliable and secure implementation of Python that can be used with Rust or compiled to WebAssembly. "
2424
---
2525

26-
# Why RustPython, not CPython
26+
# Why RustPython?
2727

28-
Edit me in index.markdown file. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
28+
There are many implementation of Python. For example: [CPython](https://github.com/python/cpython) (C) which is "the standard", [Jython](https://www.jython.org/) (Java), [IronPython](https://ironpython.net/) (.NET), [PyPy](https://www.pypy.org/) (Python) and [Stackless](http://www.stackless.com/) to name a few.
29+
Each of these implementations offer some benefits: Jython for example compiles Python source code to Java byte code, then routes it to the Java Virtual Machine. Because Python code is translated to Java byte code, it looks and feels like a true Java program at runtime and so it integrates well with Java applications.
30+
IronPython "is tightly integrated with the .NET Framework" so that "IronPython can use the .NET Framework and Python libraries", and vice versa, "other .NET languages can use Python code just as easily".
31+
We want to unlock the same possibilities that Jython and IronPython do, but for the Rust programming language and then we want to do some more. Using RustPython, we want to compile Python to WebAssembly, and allow Python to run natively in the browser.
2932

30-
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
33+
Check the "learn more" section for an explainer of all those jargon-y words. Read the blog for more in-depth technical discussion.

0 commit comments

Comments
 (0)