rustpython 0.1.1

A python interpreter written in rust.
1
2
3
4
5
6
import * as rp from 'rustpython_wasm';
import pyCode from 'raw-loader!./main.py';

const vm = rp.vmStore.get('main');

vm.exec(pyCode);