Welcome to NKPL!


NKPL Docs

In this page, We'll talk about comments. Comments in any language means that the code will not be read by the interpreter or the compiler. It is quite benificial. It is also a good practice to comment your codes for later use.

How to use comments in NKPL?

Comments can be used to explain our code. In most cases, it is done by using the com keyword. See the code below to understand how are comments used.

1. com "I am a simple comment!";

It is a good practice to comment our codes but sometimes it becomes impossible in NKPL. NKPL interpreter doesn't read anything which is inside the com attribute and then continues reading other codes.