Użytkownik:Sauron
Z Almanach
<gnuplot> set output 'budgetExample.png' set xlabel "Month of 2004" set ylabel "Amount [Euro]" plot 'src:budgetSample_gpl.txt' using 1:2 title 'planned',\ 'src:budgetSample_gpl.txt' using 1:3 title 'interpolated',\ 'src:budgetSample_gpl.txt' using 1:4 title 'spent' </gnuplot>
Aaa [1]
test ters
local z = { error_categories = {}; error_ids = {}; message_tail = {}; }
-- Whether variable is set or not
function is_set( var ) return not (var == nil or var == ); end
-- First set variable or nil if none
function first_set(...) local list = {...}; for _, var in pairs(list) do if is_set( var ) then return var; end end end
-- Whether needle is in haystack
function inArray( needl ... Patrz dalej >>>