For instance for the equivalent of x = 3; x = x + 1; print(x):
(lambda x: (lambda x: print(x))(x+1))(3);
For instance for the equivalent of x = 3; x = x + 1; print(x):