Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

On line 19, a variable called my_msg is defined with the value of "{{ msg }}". This is Jinja2 syntax that will eventually be replaced with the specified value for msg (or the default, if they don’t specify anything) during initialization time.

On lines 26 31 and 2934, the message was changed to print the value of my_msg.

...