Now that you have created a field and a setter action, add the ability to get the value of the message field. Swap the editor to the getClass.quorum tab. Add the action block and edit the action to be named GetMessage that returns text. Then, add and edit the return block so it returns the message field.
Swap back to the Main.quorum tab in the editor. Then read through the code and check that action call works with the GetMessage action you wrote. The program should output the following when the GetMessage action is complete.
This is a message from the TestClass field, message. Set the message from outside of the TestClass.
Coding:
Hotkey Shortcuts
Move BlocksUP or DOWN or TAB
Run Program ALT + SHIFT + R
Stop Program ALT + SHIFT + S
Hide Tray ALT + SHIFT + X
Zoom In ALT + +
Zoom Out ALT + -
Open Help ALT + SHIFT + H
Navigate to Tray ALT + 1
Navigate to Blocks ALT + 2
Enter Navigation Mode SHIFT + ENTER
Switch to Next Tab CTRL + Tab
Switch to Previous TabCTRL + Shift + Tab
Blocks
Hint
Great job!
Try again
Drag over the action block and name the action GetMessage, action GetMessage returns text. Then add the return block and edit it so the message variable is returned by the action (e.g., return message).