/AH_Project

Naive AH Project

Primary LanguageLua

AH PROJECT

Naive World of Warcraft addon using Auction House API.

Getting Started with LUA

Lua is a scripting language used to make addons. If you haven't used LUA before, it is not difficult to get started.

Here are some good sources to get started:

Installing LUA for MacOS:

  1. Open up terminal and type.
curl -R -O http://www.lua.org/ftp/lua-5.3.5.tar.gz
tar zxf lua-5.3.5.tar.gz
cd lua-5.3.5
make macosx test
  1. Once installed, you need to copy the lua into /usr/loca/bin/.
sudo cp src/lua /usr/local/bin
  1. Test it via command line.
lua
> io.write("Hello world, from ", _VERSION, "!\n")

output

Hello world, from Lua 5.3!
file (0x7fff990ab1a8)
  1. Test a program.

Create a file named helloworld.lua. Copy and save the program below:

-- helloworld.lua
-- the first program in every language

io.write("Hello world, from ",_VERSION,"!\n")

To run it, enter this command in terminal.

lua helloworld.lua

Built With

  • LUA - The compiler used

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

  • Abe Choi - Initial work

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments