Skip to content

Jpx-lang/Jpx-wiki

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

JPX Wiki

Welcome to the official JPX Wiki.

This wiki contains the documentation for JPX (Jaguar Programming Xperience) — a lightweight programming language designed with simple syntax and beginner-friendly structure.

The goal of this wiki is to help users understand the language, learn the syntax, and start building scripts using JPX.


What is JPX

JPX is a programming language focused on:

  • simple syntax
  • readable scripting
  • lightweight execution
  • beginner-friendly development

JPX is designed to make scripting and programming easier to understand while remaining flexible for developers.


Getting Started

If you are new to JPX, start with these pages:

  • Quick Installation
  • Variables
  • Print Statement
  • Error Handling
  • Examples

These pages will guide you through the basic features of the language.


Example Program

Global [name = "john"];

Print "Name : $name";

Output:

Name : john

This example demonstrates a global variable and printing its value.


Documentation Pages

The JPX wiki is organized into several sections.

Core Syntax

  • Variables
  • Print Statement
  • Error Handling
  • Functions
  • Modules

Guides

  • Installation
  • Quick Start
  • Writing Your First Script
  • Running JPX Programs

Developer Resources

  • Contributing
  • Module Development
  • Configuration

Error Handling Example

JPX supports structured error handling.

try {
    Print "Running script...";
} Catch (e) {
    Print "Error detected";
}

This allows scripts to safely handle runtime errors.


Versions

JPX currently includes several versions:

Version Description
JPX v1.x Core language development
JPX S Series Stable and lightweight runtime
JPX A Series Real-time scripting version

Contributing

JPX is an open project and contributions are welcome.

Developers can contribute by:

  • improving documentation
  • adding modules
  • creating tools
  • reporting issues

To contribute:

  1. Fork the repository
  2. Make your changes
  3. Submit a pull request

Repository

The JPX source code and releases are available on GitHub.

Developers and users can explore the project, download releases, and follow updates from the repository.


Notes

This wiki will continue to expand as the JPX language grows and new features are introduced.

About

Official docs JpX

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors