1. 代码:
div{
	@num:1;
	@str:e("0@{num}");
	width:@str;
}
  1. 输出:
div {
  width: 01;
}