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ยป