Files
windmill/community/scripts/u/bot/hello_world.py
Ruben Fiszel 2e132878e4 first commit
2022-05-05 04:25:58 +02:00

6 lines
268 B
Python
Executable File

import wmill
def main(name: str = "Nicolas Bourbaki"):
print(f"Hello World and a warm welcome especially to {name}")
print("The env variable at `g/all/pretty_secret`:", wmill.get_variable("g/all/pretty_secret"))
return {"len": len(name), "splitted": name.split() }