Skip to content

Instantly share code, notes, and snippets.

@pravynandas
pravynandas / class_in_vbscript.vbs
Created August 21, 2017 14:47
How to write a class in a VBS (vbscript file)
set clshw = new helloworld
before = clshw.SayHi()
clshw.Smile = “….. NOW I AM IN CLASS :D”
after = clshw.SayHi()
set clshw = nothing