- Lua Quick Start Guide
- Gabor Szauer
- 446字
- 2021-08-05 10:30:34
Hello World!
It is common practice when first learning a new programming language to create a Hello World program. This is a simple program that prints the words Hello World to the screen. The goal of this exercise is to write, compile (or interpret), and run a simple piece of code to prove that you can execute it.
The program will be written using Visual Studio Code, but how will it be executed? Visual Studio Code provides an Integrated Terminal. This is a Terminal that should work the same way regardless of what operating system you are using. It's important to note that whatever code gets executed through this Terminal can also be executed through the operating system Terminal/shell.
Being able to perform the same steps regardless of operating system can save time and reduce errors. For this reason, future chapters will assume code will be executed in VS Code instead of the native Terminal of each operating system.
Follow these steps to create a Hello World program, save it, and execute it on any platform (macOS, Windows 10, or Linux):
- Open Visual Studio Code and make a new document with File > New.
- Set the syntax highlighting of this file to the Lua syntax. Click on the Plain Text label in the bottom right of the code tab, then select Lua (lua) from the drop-down menu that appears:

- In this new file, type print ('hello, world'):

- Save the file to your desktop and name it hello.lua.
- From the top menu of Visual Studio Code, select View > Integrated Terminal.
- On all platforms, if you did not have a folder open, the editor starts out in your home directory. If you did have a folder open, the editor starts out in the folder. Navigate to your desktop with the following command: cd ~/Desktop; the ~/ part of the path is shorthand for home directory:

- Now that the Terminal has the desktop directory open (which is where hello.lua should be saved), you can execute the Lua file with the following command: lua hello.lua. You should see hello, world printed to the Terminal.
The last step invoked the Lua binary from the Terminal of Visual Studio with the hello.lua file as an argument. This, in turn, launched the Lua runtime, which executed the file that was provided as an argument. If the Lua runtime did not launch, you may want to review how to set the runtime up in the Tools for Lua section.
- Python程序設(shè)計教程(第2版)
- Computer Vision for the Web
- Learning Chef
- Learning Spring 5.0
- Rake Task Management Essentials
- Java從入門到精通(第4版)
- SharePoint Development with the SharePoint Framework
- UML 基礎(chǔ)與 Rose 建模案例(第3版)
- Salesforce Reporting and Dashboards
- Windows Phone 7.5:Building Location-aware Applications
- 51單片機(jī)C語言開發(fā)教程
- Mastering Git
- 一塊面包板玩轉(zhuǎn)Arduino編程
- OpenCV 3計算機(jī)視覺:Python語言實現(xiàn)(原書第2版)
- TypeScript 2.x By Example