6
0
mirror of https://github.com/avast/ioc synced 2024-06-28 09:41:14 +00:00
ioc-collection/VB-Research/earlyBinding/Module1.bas
2021-05-19 13:26:37 +02:00

10 lines
158 B
QBasic

Attribute VB_Name = "Module1"
Option Explicit
Sub main()
Dim s As New SpeechLib.SpVoice
Call s.Speak("Early binding is cool")
End Sub