Welcome to Nex

About Nex

Nex is a lightweight, beginner-friendly programming language designed for ease of use while maintaining flexibility. It simplifies coding with an intuitive syntax, making it ideal for new programmers, students, and developers looking for a straightforward way to write and execute code. Nex aims to provide a smooth learning curve, allowing users to quickly grasp programming concepts and build applications efficiently.

Key Features

Nex is packed with features that make it a powerful and versatile language:

Code Examples

Basic Print Statement

accu("Hello, World!")

This will print "Hello, World!" to the console.

User Input

name = ullitu("Enter your name")
accu("Hello, " + name + "!")

This will prompt the user to enter their name and then print a personalized greeting.

For Loop

for i in range(5):
    accu("Number: " + str(i))

This will print numbers from 0 to 4 using a for loop.

Conditional Statement

x = 10
if x > 5:
    accu("x is greater than 5")
else:
    accu("x is not greater than 5")

This will demonstrate a simple if-else conditional statement.

Function Definition

def add(a, b):
    return a + b

result = add(5, 3)
accu("Result: " + str(result))

This will define a function and call it to add two numbers.

Get Started with Nex

Ready to start coding with Nex? Download the compiler and explore the possibilities!

Download Compiler

Support & Development

Nex is currently under active development. We appreciate your interest and support as we continue to improve the language.

For any questions, feedback, or to report issues, please join our Discord community:

Join Discord