diff --git a/examples/00-helloworld/helloworld.nmf b/examples/00-helloworld/helloworld.nmf
deleted file mode 100644
index 3b83681a7..000000000
--- a/examples/00-helloworld/helloworld.nmf
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "program": {
- "x86-32": {"url": "nacl-x86/helloworldRelease.nexe"},
- "x86-64": {"url": "nacl-x64/helloworldRelease.nexe"}
- }
-}
diff --git a/examples/00-helloworld/index.htm b/examples/00-helloworld/index.htm
deleted file mode 100644
index c904dc088..000000000
--- a/examples/00-helloworld/index.htm
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
- BGFX: Hello, World!
-
-
-
-
-
diff --git a/examples/00-helloworld/nacl-chrome.bat b/examples/00-helloworld/nacl-chrome.bat
deleted file mode 100644
index 62676c309..000000000
--- a/examples/00-helloworld/nacl-chrome.bat
+++ /dev/null
@@ -1,10 +0,0 @@
-@echo off
-setlocal
-set NACL_DEBUG=%~dp0..\..\.debug\nacl
-set NACL_EXE_STDERR=%NACL_DEBUG%\stderr.txt
-set NACL_EXE_STDOUT=%NACL_DEBUG%\stdout.txt
-set NACL_DANGEROUS_ENABLE_FILE_ACCESS=1
-mkdir %NACL_DEBUG% > nul
-rm -rf %NACL_EXE_STDERR% > nul
-rm -rf %NACL_EXE_STDOUT% > nul
-start %LOCALAPPDATA%\Google\Chrome\Application\chrome.exe --incognito --no-sandbox --show-fps-counter http://localhost:8080 %*