Emma needs to create a method for the Gesture struct that allows her to update the Name and Emoji fields. After creating the method, she needs to print the current gesture first, and the updated gesture afterwards.
Can you help Emma write the Update() method with a pointer receiver on the Gesture struct, so her program can properly update the values of the previously mentioned fields?
She wants to update the fields of Gesture to: Thumbs-Up and 👍
Take notice that the output of her program should look like this:
The current gesture is: OK-Hand 👌
The updated gesture is: Thumbs-Up 👍