Difference between revisions of "Welcome to NETIO resources & projects & documentation overview"

From wiki.netio-products.com
Jump to navigation Jump to search
(Netio Programming)
(Netio Programming)
Line 2: Line 2:
 
Netio uses Lua as its scripting language. To master it, follow these references:
 
Netio uses Lua as its scripting language. To master it, follow these references:
 
* [https://www.lua.org/pil/contents.html Lua tutorial] - If you are new to Lua and programming as such and if you are eager to learn, this is your starting point. Before you proceed to Netio Sockets, this [https://www.lua.org/demo.html online environment] will be a good place to test your first scripts.
 
* [https://www.lua.org/pil/contents.html Lua tutorial] - If you are new to Lua and programming as such and if you are eager to learn, this is your starting point. Before you proceed to Netio Sockets, this [https://www.lua.org/demo.html online environment] will be a good place to test your first scripts.
* [[Netio Lua Manual]] - A quick jump into Lua programming if you mastered another programming language. If you already know Lua, just keep in mind that Netio Lua loops are limited to 32k cycles and all numbers are integers, not decimals like in standard Lua.
+
* [[Netio Lua Manual]] - A quick jump into Netio Lua programming if you mastered another programming language. If you already know Lua, just keep in mind that Netio Lua loops are limited to 32k cycles and all numbers are integers, not decimals like in standard Lua.
 
* [[Netio Lua Reference]] - If you can already code in Lua, Netio-specific Lua functions is your main guide to programm Netio Sockets.
 
* [[Netio Lua Reference]] - If you can already code in Lua, Netio-specific Lua functions is your main guide to programm Netio Sockets.
 
* [https://www.lua.org/manual/5.3/ Lua manual] - Although you won't need everything mentioned here, it is worth to peek here from time to time to grasp the concepts of effective Lua programming.
 
* [https://www.lua.org/manual/5.3/ Lua manual] - Although you won't need everything mentioned here, it is worth to peek here from time to time to grasp the concepts of effective Lua programming.

Revision as of 10:02, 25 April 2017

Netio Programming

Netio uses Lua as its scripting language. To master it, follow these references:

  • Lua tutorial - If you are new to Lua and programming as such and if you are eager to learn, this is your starting point. Before you proceed to Netio Sockets, this online environment will be a good place to test your first scripts.
  • Netio Lua Manual - A quick jump into Netio Lua programming if you mastered another programming language. If you already know Lua, just keep in mind that Netio Lua loops are limited to 32k cycles and all numbers are integers, not decimals like in standard Lua.
  • Netio Lua Reference - If you can already code in Lua, Netio-specific Lua functions is your main guide to programm Netio Sockets.
  • Lua manual - Although you won't need everything mentioned here, it is worth to peek here from time to time to grasp the concepts of effective Lua programming.