我刚刚遇到了一个我认为非常奇怪的问题,但很可能我只是做错了什么。
当我运行此代码时:
Function OutOfOrder($animal,$verb,$adjective) {
@"
The quick brown $animal $verb over the $adjective dog
"@
}
OutOfOrder("fox","jumped","lazy")
这是我收到的输出:
The quick brown fox jumped lazy over the dog
PS 2.0 和 3.0 中的行为相同。是什么赋予了?
谢谢!