PropertyValue
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
http://www.w3.org/ns/prov#value
  • function fins whether a number is prime or not.: : [code]: function IsPrime (N : integer) : Boolean;: var: i, SqrtOfN : integer;: begin: // if N is smaller than 2, it cannot be a prime number: : if N < 2 then: begin: Result := False;: exit: end;: : // If it is not smaller than 2...: : // First of all, assume that the given number N is a prime number.: : Result := True;: : // Then, check from 2 unt
http://www.w3.org/ns/prov#wasQuotedFrom
  • programmersheaven.com