NPL or Neural Parallel Language is an open source, high-performance, scripting language. Its syntax is 100%-compatible with lua. NPL runtime provides essential functionality for building 3D/2D/Server
applications that runs on windows/linux/android/iOS
.
git clone https://github.com/LiXizhi/NPLRuntime.git
./build_linux.sh
See Install Guide for details
-- this is from `helloworld.npl`
NPL.activate("(gl)helloworld.npl", {data="hello world!"})
this(msg){
if(msg) then
print(msg.data or "");
end
}
NPL prototype was designed in 2004, which was then called 'parallel oriented language'. NPL is initially designed to write flexible algorithms that works in a multi-threaded, and distributed environment with many computers across the network. More specifically, I want to have a language that is suitable for writing neural network algorithms, 3d simulation and visualization. Lua and C/C++ affinity was chosen from the beginning.
To run with GUI, use:
npl [filename] [parameters...]
To run in server mode, use:
npls [filename] [parameters...]
For example:
npls hello.npl