I was attempting a basic hello world smart contract in Pact. While being able to complete the contract I received a warning. It didn't stop my contract from running but did concern me.
In future lengthier contracts will I have to place the type next to the parameter in a function?
My example (Sample Picture):(defun hello (name)
The above throws a warning but the following does not (No Warning):defun hello (name:string)
Is it best practice to include the type? (name:string)