From 69bc854d4c17dc647a193607c645c51385c981f3 Mon Sep 17 00:00:00 2001 From: Valeriy Manzhos Date: Fri, 18 Oct 2019 21:50:49 +0300 Subject: [PATCH] Added Visual Basic for Applications language --- README.md | 1 + v/VBA.vba | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 v/VBA.vba diff --git a/README.md b/README.md index f79d0871..09813453 100755 --- a/README.md +++ b/README.md @@ -515,6 +515,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Virgil](v/virgil.v3) * [Visualbasic](v/visualbasic.vb) * [Visualbasicscript](v/visualbasicscript.vbs) +* [Visual Basic for Applications](v/VBA.vba) * [Visualfoxpro](v/visualfoxpro.prg) * [Vms](v/vms.vms) * [Vowels](v/Vowels.vw) diff --git a/v/VBA.vba b/v/VBA.vba new file mode 100644 index 00000000..1e370258 --- /dev/null +++ b/v/VBA.vba @@ -0,0 +1,3 @@ +Sub HelloWorld() + Call MsgBox("Hello World!") +End Sub