Lua 5.3 Released
Written by Kay Ewbank   
Wednesday, 14 January 2015

The latest version of scripting language Lua has been released with a number of new features.

 

Lualogo

 

Lua is a scripting language used in industrial applications such as robotics, image processing, text editors and web development. It was created in Brazil and was designed to be simple, small, portable, fast, and easily embedded into applications.  

As we reported in December, 2011 when the previous version was released, the name Lua means "moon" in Portuguese. The language supports functions as first class objects, closure and extensible semantics. It also isn't a class based language. Overall it most resembles JavaScript of all the currently popular languages.

The new version of Lua adds support for integers, bitwise operators, and the support for 32-bit numbers is now officially included. The new version also adds basic UTF-8 support, and now has functions to pack and unpack values. The UTF-8 support does not provide any support for Unicode other than the handling of the encoding. Any operation that needs the meaning of a character, such as character classification, is outside its scope.

The bitwise operators supported are bitwise and, or, exclusive or, right shift, left shift, and unary bitwise not. All bitwise operations convert its operands to integers, operate on all bits of those integers, and produce an integer result.

The language now has several new functions, including a number of string functions (pack, unpack, and packsize). There’s also a new move table function.

There’s a new simpler API for continuation functions in C, and a number of new functions in the C API including lua_geti and lua_seti, lua_numbertointeger and lua_stringtonumber, and lua_rotate.

 

Lualogo

More Information

Lua.org

Lua 5.3 Reference Manual

Changes since Lua 5.2

Related Articles

Lua 5.2.0 Released

Standalone Lua Development Tools 

Terra - A Language For Lua

 

To be informed about new articles on I Programmer, install the I Programmer Toolbar, subscribe to the RSS feed, follow us on, Twitter, FacebookGoogle+ or Linkedin,  or sign up for our weekly newsletter.

 

Banner


Learn To Code With Scrimba
27/12/2024

Scrimba is an online interactive coding platform that aims to make learning to code fun and accessible. It offers courses on web development, including HTML, CSS, JavaScript and React and also has an  [ ... ]



Microsoft Releases Update For VSCode SQL Extension
30/12/2024

There's a new version of the Microsoft MSSQL extension for Visual Studio Code that aims to make it easier to write VSCode apps for database use, specifically for Azure SQL, SQL Database in Fabric, and [ ... ]


More News

 

espbook

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Wednesday, 14 January 2015 )