Skip to content

Instantly share code, notes, and snippets.

@aidev13
Created December 25, 2023 22:01
Show Gist options
  • Save aidev13/a8437e7c8e5407d39aa25ef0120556aa to your computer and use it in GitHub Desktop.
Save aidev13/a8437e7c8e5407d39aa25ef0120556aa to your computer and use it in GitHub Desktop.
Zoho Deluge Note Worthy Info

This following code is for deluge. Deluge, or Data Enriched Language for the Universal Grid Environmen is a propretary scripting language for the Zoho CRM program.

The code both allows a dev to determine odd or even numbers:

numInput =  3;
even = numInput % 2 == 0;

if(even == true) {
	info "even";
} else {
	info "odd";
}
info numInput;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment