در اینجا به صورت خلاصه در مورد TypeChat مطلب نوشتهام.
۱۱ ماه قبل، جمعه ۱۴ مهر ۱۴۰۲، ساعت ۱۷:۱۵
PS /> Install-Module -Name Microsoft.PowerShell.WhatsNew
PS /> Get-WhatsNew Or PS /> Get-WhatsNew -Online
brew update brew upgrade powershell --cask
winget install Microsoft.Powershell
func fn() (int, int, int) { return 1, 2, 3 } func main() { a, _, _ := fn() fmt.Println(a) }
function fnTuple() { return [1, 2, 2]; } function fnObject() { return { a: 1, b: 2, c: 2, }; } const [, , ,] = fnTuple(); const { b } = fnObject();