Im reading an old tutorial about instance variables.
However i wasnt able to call de instance variable from the CONTROLLER to the VIEW.
The code is:
VIEW :
<html>
<head>
<title> title </title>
</head>
<body>
<p> line 1 </p>
<p> <%= @text %> </p>
</body>
</html>
CONTROLLER:
class MoviesController < ApplicationController
def movies
@text = "movietitle"
end
end
When i load the page, it only shows the line 1 paragraph.
How can i call the instance variable @TEST?