File size: 303 Bytes
81c8a55 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import modal
app = modal.App("example-get-started")
@app.function()
def square(x):
print("This code is running on a remote worker!")
return x**2
if __name__ == "__main__":
# For local testing
with app.run():
result = square.remote(42)
print("the square is", result)
|