HELP - toc doesn't load file

Here is my latest IMSO (=“I’m Missing Something Obvious”) problem . I have been unable to divine why my .toc file (see below) will not load an .lua file (also see below)

Here’s are the contents of the .toc file, Snippets\Snippets.toc

## Interface: 80100
## Title: Snippets
## Notes: Fun with the WoW API
## Author: She Who Must Be Obeyed
## Version: 0.71
## 5 February, 2019

SnippetTest.lua

And here are the contents of the file that cannot be loaded, Snippets\SnippetTest.lua

-- SnippetTest.lua

local function hello()
	message( "Hello World!")
end

All other AddOns are disabled. Any help would be greatly appreciated.

Thanks,

## 5 February, 2019 is not a valid metatag.

https://wow.gamepedia.com/TOC_format

Your .lua file defines the function “hello” but never calls it so you won’t see anything in-game.

Edit: I would suggest you install and enable:
https://www.curseforge.com/wow/addons/bug-grabber
and
https://www.curseforge.com/wow/addons/bugsack

even if you disable/remove all your other addons.

Thanks…