Smarty 传值为什么原封不动的给我返回,能否解答一下,谢谢,

//php代码
<?php
$oot='你好';
require_once ('libs/Smarty.class.php');
$a=new Smarty();
$a->assign('oot','$oot');
$a->display('hello.html');

//html代码
<!DOCTYPE html>



{$oot}

{$oot}


$a->assign('oot','$oot');------->$a->assign('oot',$oot);