17:265967da3bcb
Anton Shestakov <av6@dwimlabs.net>, Sat, 10 Sep 2016 07:56:45 +0800
examples: version.lua

next change 25:7af20c4b0579

examples/version.lua

Permissions: -rw-r--r--

Other formats: Feeds:
local hglib = require('hglib')
local client = hglib.Client.open()
local code, o, e, d = client:runcommand('version', '--quiet')
client:close()
if code == 0 then
print(o:match('%(version (%S+)%)'))
else
print("Couldn't get version: " .. e)
end
if #d > 0 then
print('Debug: ')
end