package
0.0.1-rc1
Repository: https://github.com/xmapst/autoexecflow.git
Documentation: pkg.go.dev

# README

starlark

exec starlark type script

Usage

# params is dict
def EvalCall(params):
    print(params)
    coins = {
      'dime': 10,
      'nickel': 5,
      'penny': 1,
      'quarter': 25,
    }
    print('By name:\t' + ', '.join(sorted(coins.keys())))
    print('By value:\t' + ', '.join(sorted(coins.keys(), key=coins.get)))

# Functions

No description provided by the author

# Structs

No description provided by the author