3
例如如何忽略返回結果
child.stdout.on \data (buffer) ->
result.stdout += buffer
- >
child.stdout.on('data', function(buffer){
return result.stdout += buffer;
});
,我需要它沒有回報。在F#中,我可以添加|> ignore
我怎樣才能在livescript中處理它?
我很好奇爲什麼你需要沒有返回子句,因爲你可以忽略函數調用的結果? – niahoo 2013-06-10 20:59:23
@niahoo如果最後一個表達式是一個循環,它將創建一個包含所有元素的數組並返回它。這可能是昂貴的。用'! - >'它不會創建數組。 – rightfold 2014-04-30 18:26:27