- or download this
$student = {
...
points => \@points,
};
- or download this
$student = {
...
points => [@points],
};
- or download this
$student = {
...
points => @points,
};
- or download this
$student = {
...
...
'b', 'c',
'd',
};
- or download this
$student = {
...
...
b => 'c',
'd',
};