Introspection: Difference between revisions

Content added Content deleted
Line 916: Line 916:
=={{header|Jsish}}==
=={{header|Jsish}}==
<lang javascript>/* Introspection, in jsish */
<lang javascript>/* Introspection, in jsish */
if (Info.version() < 2.0806) {
if (Info.version() < Util.verConvert('2.8.6')) {
puts("need at least version 2.0806 of jsish");
puts("need at least version 2.8.6 of jsish for this application");
exit(1);
exit(1);
}
}