-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
U create a bunch of args, and then reuse them for different functions
type Kek
Kek name::String age::Int waw::Bool = []
args = (name: "a" age: 42) // tuple | anonymous obj
kek ..args waw: true
Questions
What if order is different?
kek waw: true ..argsIs there a better syntax for that?
kek waw: true
What if its only a tuple send?
kek args // ???
// do we need a special syntax just for tuple sending?
// should it be function call syntax???
// kek (args)Reactions are currently unavailable