1.
打印出: the value is+"参数值"
lr_output_message("the value is",lr_eval_string("{参数值}"));
2.
定义了一个参数名为pranme 值为 "51test"
lr_serve_string("51test","pranme");
调用方法:
参数需要双引号 lr_eval_string("{param}");
3.
变量直接调用,不能使用双引号,否则做字符串处理
char temp[100]="51test"
lr_output_message(temp)