aturfah / cmplxsys530-final

Final Project for Complex Systems 530 WN18
MIT License
2 stars 2 forks source link

Add types to function arguments #181

Open aturfah opened 5 years ago

aturfah commented 5 years ago

Apparently python supports typed arguments, or at least this works

def my_func(arg_int:int, arg_str:str) -> list:

If for no other reason than making code easier to write, these argument types should be specified. This is a V2.0 thing because it might break some behavior.

aturfah commented 4 years ago

Removing from V2.0 and adding to V1.10, as this is purely a runtime thing. This should also include what is returned, if anything.