buglens / modal_test.py
vatche.thorossian
added modal
0b07b6d
Raw
History Blame Contribute Delete
240 Bytes
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
@app.local_entrypoint()
def main():
print("the square is", square.remote(42))