This document does not use semicolons in scriptlets.
<%
  var a = 'b'
  var b = 'c'
  var c
  c = b
%>
The value of c is: <%= c %>
