In the following example, `x` and `y` are provided to the runtime, and the returned value is available in the `z` variable. ``` @datalayer(runtime="", inputs=[x, y], output=z) def example_method(x, y) return x * y ```