I come across some examples in the Daml documentation where the operator '$' is being used, but cannot fully understand its purpose.
Example:
submit alice $ create User with username = alice, following = []
Is it the same as do
, like in:
submit alice do
create User with username = alice, following = []
?