Simple operation

Input:
  def f(x):
    return x+3
Python:
  LOAD_FAST x
  LOAD_CONST 3
  BINARY_ADD
  RETURN_VALUE
Parrot:
  new $P0, 'PyObject'
  $P0 = P5 + 3
  .return ($P0)