19 lines
389 B
XML
19 lines
389 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<script xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:xs="http://www.w3.org/2001/XMLSchema" xsi:noNamespaceSchemaLocation="empty.xsd"
|
|
xsi:type="xs:string">
|
|
<![CDATA[
|
|
function matchwo(a,b)
|
|
{
|
|
if (a < b && a < 0) then
|
|
{
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
]]>
|
|
</script>
|