Module:Ups and downs notation: Difference between revisions

CompactStar (talk | contribs)
No edit summary
CompactStar (talk | contribs)
No edit summary
Line 120: Line 120:


function p.get_specific_note_name(tuning, steps)
function p.get_specific_note_name(tuning, steps)
return p.get_note_names(tuning)[steps]
tbl = p.get_note_names(tuning)[steps]
result = ''
i = 0
while i < #tbl do
result = result + tbl[i] + ','
end
result = result:slice(0, result.len() - 1)
end
end


return p
return p