mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
6 lines
268 B
Python
Executable File
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() } |