.ad {
position: relative;
display: block;
max-height: 196px;
max-width: 320px;
border: 1px solid #d6d6d6;
overflow: hidden;
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # execute a program | |
| $ lua hello.lua | |
| # import a file and then into interactive mode | |
| $ lua -i lib.lua | |
| # execute some line | |
| $ lua -e "print(math.sin(12))" | |
| # execute with library "a" (using "-l") |
OlderNewer