Up

_fooSTab

Display the strings values array in the console and write it in the log (if the log mask >= MSKFOO).

Prototype : fun [tab S] tab S

Return : tab S the same array.

See also

Example

fun main ()=
	_showconsole;
	let tupletotab ["Mia Wallace" "Cecile de Volanges" "Uma"] nil -> t in
	_fooSTab t;	// Mia Wallace:Cecile de Volanges:Uma:
	0;;