본문 바로가기

카테고리 없음

Lua C Book

Programming in Lua, Fourth Edition

  1. Lua C Books
  2. Lua C Bookstore
  3. Lua C Injector
  4. Lua C Book Download
Author: Roberto IerusalimschyLua c book club
  • Publisher: Lua.org
  • Publication date: August 1, 2016
  • Pages: 388
  • Paperback ISBN: 978-8590379867
  • Digital format: PDF, EPUB and Online all included in the purchase

Lua C Books

Programming in Lua is the official book about the language, providing a solid base to any programmer who wants to use Lua. Authored by Roberto Ierusalimschy, the chief architect of the language, it covers all aspects of Lua 5-from the basics to its API with C. Lua (Computer program language) 1 - 5 of 5 results. Best Sellers Newest to Oldest Oldest to Newest Price - Low to High Price - High to Low Title - A to Z Title - Z to A. Sort by: Best Sellers.

Lua is spreading more and more throughout different areas of software, from embedded systems and mobile devices to the Web and the Internet of Things. Besides, it has a major role in the game industry, where knowledge of Lua has become an indisputable asset. Lua is the language of choice for anyone who needs a scripting language that is simple, efficient, extensible, portable, and free.

Programming in Lua is the official book about the language, providing a solid base to any programmer who wants to use Lua. Authored by Roberto Ierusalimschy, the chief architect of the language, it covers all aspects of Lua 5--from the basics to its API with C. The book is the main source of programming patterns for Lua, with numerous code examples that help the reader to make the most of Lua's flexibility and powerful mechanisms. Programming in Lua is targeted at people with some programming background, but does not assume any prior knowledge about Lua or other scripting languages.

This Fourth Edition updates the book to Lua 5.3 and marks a complete reorganization of the text. Building on his many years of experience teaching Lua, Roberto has restructured the book to present the material in a growing order of complexity, allowing the reader to better absorb the character of the language.

More information about the book is available on Lua.org.


Customers in the European Union purchasing digital books will have the correct VAT amount added to their order during checkout.

The Lua C API is verbose and it can sometimes be a bit complicated to navigate. Furthermore, if you are programming in C++, the API doesn't really fit into the OOP idiom. There are a few binding libraries that try to bridge this gap. One of the most intuitive and easy-to-use libraries out there is Lua Bridge. You can get Lua Bridge from GitHub at https://github.com/vinniefalco/LuaBridge.

Lua C Bookstore

Book

Lua C Injector

Lua Bridge is a C++ API. When using Lua Bridge, you have to use a C++ compiler.

Lua C Book Download

Lua Bridge focuses on letting the user create object-oriented Lua bindings in an intuitive and easy manner. In fact, using Lua Bridge, you can create a fairly complex Lua class with far less code than if you were writing it using the Lua C API alone. One of the nice ...