J'ai les éléments suivants qui fonctionnent bien :
def steps
%w[hello billing confirmation]
end
steps.first
Mais je veux faire ceci :
def step_title
%w['Upload a photo' 'Billing Info' 'Confirmation Screen']
end
steps.first
Comment %w permet-il cela ? J'ai essayé une recherche Google, mais Google est faible avec ces types de caractères.
Merci.
Merci
.