Welcome to NKPL!


NKPL Docs

In this page, We'll understand how NKPL works. Let's see

The tokens

Tokens are the words that you type in a NKPL file so that the interpreter understands it and then returns the output. When you type a code, it has the following parts:-

We can say that a keyword is a collection of tokens and it is assigned to do a particular job/task. After every keyword, you have to write a string or a variable name and then end it with a semi colon. If you miss a semicolon, then the interpreter will return an Unexpected error.

Main Language

NKPL has been made with JavaScript. So, When you type any NKPL code, the interpreter translates it to JavaScript and then only the result/the output is shown.