我不知道如何把這個。我看到下面的語法在幾個地方,像關於Ruby語法的困惑
def test
{
t: a,
h: b
}
end
..
def pieces
[
'the horse and the hound and the horn that belonged to',
'the farmer sowing his corn that kept',
]
end
我迷惑關於高清的語法。我知道這是功能,但何時使用{}以及何時使用[]。不知道它叫什麼,所以我無法搜索互聯網。 我有PHP的知識,不熟悉這種類型的語法。對於第一個,在PHP我會寫如
function test ($a,$b)
{
$t=$a,
$h=$b
}
第二個,我會創建一個函數內的數組。
請幫忙。希望它是明確的。