From cbc324653e9343dbb0bdf65c2550e8a19c19c152 Mon Sep 17 00:00:00 2001 From: jamhsueh <31331939+jamhsueh@users.noreply.github.com> Date: Wed, 1 Apr 2020 00:44:03 +0800 Subject: [PATCH] Added AviSynth (#582) * Add hello world in AviSynth * Update README.md --- README.md | 1 + a/avisynth.avs | 1 + 2 files changed, 2 insertions(+) create mode 100644 a/avisynth.avs diff --git a/README.md b/README.md index 0a5eafac..ade27666 100755 --- a/README.md +++ b/README.md @@ -111,6 +111,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Attache](a/Attache.%40) * [Autohotkey](a/autohotkey.ahk) * [Autoit](a/autoit.au3) +* [AviSynth](a/avisynth.avs) * [Awful](a/awful.yuk) * [Awk](a/awk.awk) * [B](b/B.b) diff --git a/a/avisynth.avs b/a/avisynth.avs new file mode 100644 index 00000000..5101979d --- /dev/null +++ b/a/avisynth.avs @@ -0,0 +1 @@ +MessageClip("Hello World") \ No newline at end of file