compiler.let_statement


compiler.let_statement(name, value)
      

Return the intermediate language code required for introducing a global binding.

Examples:


// let xyz = 123          
eval(compiler.let_statement('xyz, 123))
xyz
// 123
      

Also see:

compiler


Core Module Index | Contents