Is it possible to set a default value to some of arguments in Racket?
Like so in Python:
def f(arg=0)
...
|
Is it possible to set a default value to some of arguments in Racket? Like so in Python:
| ||||
|
feedback
|
|
Yes; take a look at: declaring optional arguments. For example:
Racket also supports functions with keyword arguments. The link should lead to documentation that talks about them too. Good luck! | |||||||||||
feedback
|