回答編集履歴

2

引用追記

2019/10/20 06:03

投稿

Karasuryu
Karasuryu

スコア52

test CHANGED
@@ -3,3 +3,29 @@
3
3
 
4
4
 
5
5
  [wshはVBScriptの予約語ですか?](https://codeday.me/jp/qa/20190515/828761.html)
6
+
7
+ > wshはWScriptオブジェクトの組み込みのエイリアスで、あなたが書くことを可能にします
8
+
9
+ >
10
+
11
+ > wsh.Echo "foo"
12
+
13
+ > wsh.StdErr.WriteLine "bar"
14
+
15
+ > wsh.Quit 42
16
+
17
+ >
18
+
19
+ > の代わりに
20
+
21
+ >
22
+
23
+ > WScript.Echo "foo"
24
+
25
+ > WScript.StdErr.WriteLine "bar"
26
+
27
+ > WScript.Quit 42
28
+
29
+ >
30
+
31
+ > 私の知る限りでは、これはドキュメントでカバーされていません。

1

Markdown編集

2019/10/20 06:03

投稿

Karasuryu
Karasuryu

スコア52

test CHANGED
@@ -2,6 +2,4 @@
2
2
 
3
3
 
4
4
 
5
- > wshはVBScriptの予約語ですか?
6
-
7
- https://codeday.me/jp/qa/20190515/828761.html
5
+ [wshはVBScriptの予約語ですか?](https://codeday.me/jp/qa/20190515/828761.html)