UI.exe
54.4 MB
NexLang - v2.10 beta
- fixed bug with copying variables
- fixed bug with strange list behavior while assigning
- fixed bug multi-return function
- fixed void bug
- added ability to delete elements from list with operator -
- added ability to get count of elements in list with operator /
- added ability to increase lists by repeating elements inside of list with operator *
- now functions can be used as methods with .
- npt version 1.82
documentation will be updated soon. Also started work on ui
- fixed bug with copying variables
- fixed bug with strange list behavior while assigning
- fixed bug multi-return function
- fixed void bug
- added ability to delete elements from list with operator -
- added ability to get count of elements in list with operator /
- added ability to increase lists by repeating elements inside of list with operator *
- now functions can be used as methods with .
smth.func(arg2, arg3...)- npt version 1.82
documentation will be updated soon. Also started work on ui
UI.exe
56.1 MB
NexLang - v2.14 Beta
- classes added
- bug fixes
- npt version 1.82-40
- classes added
- bug fixes
- npt version 1.82-40
UI.exe
60.4 MB
NexLang - v2.18 Beta
- modules added
- crossfile run now available
- bug fixes
- npt version 1.82-90
! laptop modules temporary unavailable
- modules added
- crossfile run now available
- bug fixes
- npt version 1.82-90
! laptop modules temporary unavailable
๐ฅ1
Due to some problems with time, the rollout plan and future releases will be delayed
image_2025-06-01_16-59-23.png
46.9 KB
Hello there, I'm with some good news
A few things from new versions:
+ ide directives added (you can resize app window from ide)
+ map type added
+ row type added and optimized for "for" operator.
plan:
+ add map
- add custom types
- optimize custom types for libs
- add lib with triggers
A few things from new versions:
+ ide directives added (you can resize app window from ide)
+ map type added
+ row type added and optimized for "for" operator.
for (1'9 -> i) {...}plan:
+ add map
- add custom types
- optimize custom types for libs
- add lib with triggers
image_2025-06-16_01-39-42.png
1.3 MB
Version 3.0 (probably with triggers) gonna be dropped this month!
what's new:
+ new documentation
+ triggers
+ custom variables
+ more stable libraries (for working with volume, mouse, keyboard, etc)
+ variable types
+ loc / eloc file system
+ ide directives
+ new style
and much more
what's new:
+ new documentation
+ triggers
+ custom variables
+ more stable libraries (for working with volume, mouse, keyboard, etc)
+ variable types
+ loc / eloc file system
+ ide directives
+ new style
and much more
Due to copyright issues (I found a few other languages with the same name), NexLang will now get an additional "e" and become NexeLang.
The name NexeLang can be interpreted as: New Executable Language. "exe" since it will get it first compiler inside of .exe files.
The file extension is still undefined, but here are a few options being considered:
Keep it as it is โ .nex
Change it to .nxl or .nx
Or use .nel
By the way, GitHub and other repositories will be created soon.
Clynet is currently having issues, but it will be available shortly
The name NexeLang can be interpreted as: New Executable Language. "exe" since it will get it first compiler inside of .exe files.
The file extension is still undefined, but here are a few options being considered:
Keep it as it is โ .nex
Change it to .nxl or .nx
Or use .nel
By the way, GitHub and other repositories will be created soon.
Clynet is currently having issues, but it will be available shortly
Here will be published NexeLang V3: https://github.com/don-demon/NexeLang
Other places will be added later
Other places will be added later
GitHub
GitHub - don-demon/NexeLang: NexeLang Repository. New Executable Language is not open source, but some parts of programs, dllsโฆ
NexeLang Repository. New Executable Language is not open source, but some parts of programs, dlls, etc could be - GitHub - don-demon/NexeLang: NexeLang Repository. New Executable Language is not o...
๐ฅ1
Channel name was changed to ยซLeaGen Software โ Official TG Channelยป
image_2025-07-16_02-40-29.png
1.7 MB
Useful Scripts
This code will automatically include all the libraries located in the same directory as the program. You can create a file named
! Requires String.dll library:
https://github.com/don-demon/NexeLang/blob/main/Extensions/Strings.dll
! Requires version 918 or later:
https://github.com/don-demon/NexeLang/blob/main/Software/V3/918/NexeLang%20Terminal.exe
This code will automatically include all the libraries located in the same directory as the program. You can create a file named
prenx.ide in the same directory and insert this code there so that it runs every time before the program starts.! Requires String.dll library:
https://github.com/don-demon/NexeLang/blob/main/Extensions/Strings.dll
! Requires version 918 or later:
https://github.com/don-demon/NexeLang/blob/main/Software/V3/918/NexeLang%20Terminal.exe
Useful Scripts
Password generator
! Requires rnd.dll library
! Requires version 10.07.00 or later
Password generator
! Requires rnd.dll library
! Requires version 10.07.00 or later
include: "rnd";
str passwd;
repeat (8) {
passwd += rnd::gen("a" ' "z" + "A" ' "Z" + "0" ' "9");
}
out: "Password: ", passwd;
๐คฏ1
Useful Scripts
This script cycles through a list of predefined strings and types the next one each time you press Ctrl + B. To change phrases just edit
! Requires kb.dll library
! Recommended version 10.20.82 or later
This script cycles through a list of predefined strings and types the next one each time you press Ctrl + B. To change phrases just edit
phrases variable! Requires kb.dll library
! Recommended version 10.20.82 or later
include: "kb"; // or `override include` if already included
list phrases = ["first", "second", "third", "..."];
int idx = 0;
trigger nextLineT = [
kb::pushed(["ctrl", "b"], 0, true),
{
kb::print(phrases[idx]);
idx = idx + 1;
if (idx >= list::len(phrases)) { idx = 0; }
}
];
โค1
TOS.exe
37.5 MB
Mini Language made with NexeLang interface concept. (maybe my future os for an android). Available commands now (v0.5beta):
- ls - list files and directories
- cls / clear - clear console
- pwd - print current directiry
- delete - delete
- edit <path> - edit file with notepad
- cd - change directory
Files available: boot.act - auto actions after entering console, shutdown, etc from tos/on directory
note: to registry a new user use: reg <username>, <password>. For example reg LGS, qwerty
note: alt+f4 to exit or "q"
- ls - list files and directories
- cls / clear - clear console
- pwd - print current directiry
- delete - delete
- edit <path> - edit file with notepad
- cd - change directory
Files available: boot.act - auto actions after entering console, shutdown, etc from tos/on directory
note: to registry a new user use: reg <username>, <password>. For example reg LGS, qwerty
note: alt+f4 to exit or "q"
image_2026-01-21_01-45-26.png
1.1 MB
Just finished custom operations, now if you'll need a few more math / logic / null-safe operations, you'll be able to add 'em
Channel name was changed to ยซDoubleDProd Software โ Official TG Channelยป
Channel name was changed to ยซDoubleD Software โ Official TG Channelยป