Will it be cool to add forced-named arguments to this list? ```python def foo(pos, *, forcenamed): print(pos, forcenamed) ``` ```python >>> foo(pos=10, forcenamed=20) 10 20 ``` ```python >>> foo(10, forcenamed=20) 10 20 ```