Skip to content

Possabilities a0.69

Latest
Compare
Choose a tag to compare
@Emilthesleeper Emilthesleeper released this 23 Feb 19:01
· 5 commits to main since this release
f16441a

Just the start of a great idea called Possibilities, with this thing you can do stuff like that:

`possibilities...

def print_help():
print("Help")

def print_help_test():
print("Help Test")

add_possability([[1,"help"],[2,Empty_],print_help])
add_possability([[1,"help"],[2,"test"],print_help_test])

check(errorfunc=False)
The following would happen with this thing:emil@penguin:~/Documents$ python3 possibilities.py help
Help`

emil@penguin:~/Documents$ python3 possibilities.py help test Help Test