Menu: Difference between revisions

4 bytes removed ,  12 years ago
Line 715:
 
=={{header|Mathematica}}==
<lang Mathematica>textMenu[data_List] := (MapIndexed[Print[#2[[1]], ") ", #] &, {a, b, c}];
Grid[MapIndexed[{#2[[1]], ")", #} &, data]]];
While[! (IntegerQ[choice] && Length[data] > choice > 0),
choice = Input["Enter selection"]];
data[[choice]])</lang>
Use:
Anonymous user