{{#template name="basicSession"}}
We've always been at war with {{dstache}}theEnemy}}.
``` ``` // In your JavaScript Template.main.helpers({ theEnemy: function () { return Session.get("enemy"); } }); Session.set("enemy", "Eastasia"); // Page will say "We've always been at war with Eastasia" Session.set("enemy", "Eurasia"); // Page will change to say "We've always been at war with Eurasia" ``` Using `Session` gives us our first taste of _reactivity_, the idea that the view should update automatically when necessary, without us having to call a `render` function manually. In the next section, we will learn how to use Tracker, the lightweight library that makes this possible in Meteor. {{/template}}