rustpython 0.1.0

A python interpreter written in rust.
1
2
3
4
5
6
7
8
9
10
11
# WARNING! This file contains mixed tabs and spaces
# (because that's what it is testing)

def weird_indentation():
	    return_value = "hi"
	    if False:
		    return return_value
	    return "hi"

assert weird_indentation() == "hi"