Skip to content

Simple Show String Pattern

madprops edited this page Aug 2, 2017 · 1 revision
function show_something()
{
	var s = "";
	
	s += "one thing<br>";
	s += "other thing<br>";
	s += "another thing";

	msg.show(s);
}
Clone this wiki locally