- Lua Quick Start Guide
- Gabor Szauer
- 54字
- 2021-08-05 10:30:36
Comments
In Lua, any time you see --, the rest of that line is considered a comment. Comments are there to help you read and understand code, but they are never executed. This example demonstrates how comments are used:
foo = "bar"
-- print (foo)
-- The above statement never prints
-- because it is commented out.
推薦閱讀
- Flask Web全棧開發實戰
- INSTANT Mock Testing with PowerMock
- Mastering Concurrency Programming with Java 8
- The Complete Rust Programming Reference Guide
- Python機器學習:數據分析與評分卡建模(微課版)
- DevOps入門與實踐
- 用Flutter極速構建原生應用
- 你不知道的JavaScript(中卷)
- Learn React with TypeScript 3
- R大數據分析實用指南
- Learning JavaScript Data Structures and Algorithms
- Apache Camel Developer's Cookbook
- Mastering JavaScript
- Kotlin進階實戰
- Java高手是怎樣煉成的:原理、方法與實踐