Up

_fooIdTab

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

Prototype : fun [tab I] tab I

Return : tab I the same array.

See also

_fooFTab

_fooSTab

_fooIdTab

Example :

fun main ()=
	_showconsole;
	let tupletotab [2 4 1] nil -> tab in
	_fooIdTab tab;	// 2:4:1:
	0;;