【发布时间】:2017-11-11 03:30:01
【问题描述】:
我有一个我使用的 VBScript 文件,它的数组中有很多值。
recipes = Array("chicken soup","turkey","mash potatoes","yams","stuffing")
在多行中声明这个数组的正确方法是什么,类似于:
recipes = Array("chicken soup",
"turkey",
"mash potatoes",
"yams",
"stuffing")
这样我就可以在每一行上写 cmets(或者这样对吗?):
recipes = Array("chicken soup", 'broth, noodles, chicken
"turkey", 'YUMMY i love turkey
"mash potatoes", 'butter, sour cream, cook 20mins
"yams", 'dont forget the marshmallows
"stuffing") 'celery, jiffy cornbread, broth
【问题讨论】:
标签: arrays vbscript comments multiline