-- this is a comment.
-- Config.txt: a simple example of how to use my LUA Plugin to parse configuration files.
--[[
	This is a comment block!
	you can easily uncomment the block by adding a - in front of the block start symbols (-.-.[.[ -> -.-.-.[.[)
--]]

-- now the information that is required by the program:
age = 6+9*2+1
size = 1.781	-- floats are unprecise, 1.78 would become 1.7998976 ...
string_part = "Ba"
str_other = 'rn'
nick = string_part..str_other..'ski'
