ArrayInit - nonkit/SmallWikiPad GitHub Wiki

ArrayInit

Use following notation

param = "col=10;row=10;text=Hello World!;"
TextWriteAt()

instead of

param = ""
param["col"] = 10
param["row"] = 10
param["text"] = "Hello World!"
TextWriteAt()

for array initialization in order to let code shorter.

See Also

Other Resources