0
comment out parts of formulate in business logic
Hi,
I'm writing a business logic using a formulate and calculating it based on a calculation of (a+b+c) / (z+x+c+v). I want to check each part on its own to make sure it gives the right output.
How can I comment out certain part to check the other part?
1 reply
-
Hi,
You can use either type of commenting method:
1+2+3 // comment after slashes
or
1+ /* comment between star-slashes */ 2+3