Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagenone
function bool = isEven(N)
	bool = (helTallisInteger(N/2));
	% eller	bool = (mod(N,2) == 0);
end

...