2020年2月17日 星期一

[Lua 語法學習] 第一支script 程式 hello world

Lua 教學網站 https://sharebody.com/share-1305-2270.html

 環境: Ubuntu 14.04

#!/usr/local/bin/luajit

-- this is signal line comment.

--[[
Here is multiple line comment.
1
2
3
--]]


print("Hello word!!")
執行結果:

$ ./HelloWorld.lua

Hello word!!

沒有留言:

張貼留言

[Ubuntu 14.04] 遠端桌面使用原生ubuntu14.04桌面

方法1:  1. 要先在原始VGA下打開terminal console 2. 輸入     $  gsettings set org.gnome.Vino require-encryption false                                     ...