Init WebCG

This commit is contained in:
2026-08-12 14:21:28 +09:00
commit 5c01660f97
170 changed files with 46248 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
' Tiny Text to Speech (only works on Windows)!
' Commandline usage:
' wscript talk.vbs Hello world!
sub Talk(message)
Dim sapi
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message
end sub
If WScript.Arguments.Count > 0 Then
dim message
for x=0 to WScript.Arguments.Count-1
message = message & " " & WScript.Arguments.Item(x)
next
Talk(message)
End If