Conditional Compilation

Below is some information about your web browser and system, if you're using Internet Explorer. The code being run is:

/*@cc_on
	var info = {
		allInfo : {
			win32 : @if (@_win32)"true"@else"false"@end,
			win64 : @if (@_win64)"true"@else"false"@end,
			mac : @if (@_mac)"true"@else"false"@end,
			x86 : @if (@_x86)"true"@else"false"@end,
			powerPC : @if (@_PowerPC)"true"@else"false"@end,
			jscript : @_jscript,
			jscriptBuild : @_jscript_build,
			jscriptVersion : @_jscript_version,
			debug : @if (@_debug)"true"@else"false"@end,
			fast : @if (@_fast)"true"@else"false"@end
		}
	};
	var values = "<ul>";
	for (var i in info.allInfo) {
		values += "<li><strong>" + i + "</strong>: " + info.allInfo[i] + "</li>";
	}
	values += "</ul>";
	document.write(values);
@*/

Results