diff --git a/roc/.devcontainer/Dockerfile b/roc/.devcontainer/Dockerfile
deleted file mode 100644
index e7d18f84..00000000
--- a/roc/.devcontainer/Dockerfile
+++ /dev/null
@@ -1,16 +0,0 @@
-FROM mcr.microsoft.com/devcontainers/base:ubuntu
-RUN mkdir -p /opt/roc
-RUN curl \
- --retry 5 \
- --retry-all-errors \
- --fail \
- --silent \
- --show-error \
- --location \
- https://github.com/roc-lang/roc/releases/download/nightly/roc_nightly-linux_$(uname -p)-latest.tar.gz | \
- tar -xz --strip-components=1 -C /opt/roc
-
-ENV PATH="/opt/roc:${PATH}"
-
-RUN roc --version
-
diff --git a/roc/.devcontainer/devcontainer.json b/roc/.devcontainer/devcontainer.json
deleted file mode 100644
index c8a60be9..00000000
--- a/roc/.devcontainer/devcontainer.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "name": "roc",
- "build": {
- "dockerfile": "Dockerfile",
- "context": "."
- },
- "customizations": {
- "github.com/rradczewski/kata-bootstraps": {
- "failingTestVerification": "roc test | tee /dev/stderr | sed 's,\\x1B\\[[0-9;]*m,,g' | grep -q '1 failed and 1 passed'",
- "testCommand": "roc test",
- "languageLogo": "../roc.svg",
- "resources": [
- {
- "name": "roc Tutorial",
- "url": "https://www.roc-lang.org/tutorial"
- },
- {
- "name": "roc Documentation",
- "url": "https://www.roc-lang.org/docs"
- },
- {
- "name": "Builtins",
- "url": "https://www.roc-lang.org/builtins"
- }
- ]
- },
- "vscode": {
- "extensions": [
- "IvanDemchenko.roc-lang-unofficial"
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/roc/.gitpod.yml b/roc/.gitpod.yml
deleted file mode 100644
index 6eb17bc2..00000000
--- a/roc/.gitpod.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-image:
- file: .devcontainer/Dockerfile
-tasks:
- - name: Init
-vscode:
- extensions:
- - IvanDemchenko.roc-lang-unofficial
diff --git a/roc/README.md b/roc/README.md
deleted file mode 100644
index 6b2984ed..00000000
--- a/roc/README.md
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-# Kata-Bootstrap: roc
-
-| [Open in GitHub Codespace](https://github.com/codespaces/new?hide_repo_select=true&repo=rradczewski%2Fkata-bootstraps&ref=roc) | [Open in GitPod.io](https://gitpod.io/#https://github.com/rradczewski/kata-bootstraps/tree/roc) | [Open locally in VSCode](https://rradczewski.github.io/kata-bootstraps/redirect.html?url=vscode%3A%2F%2Fvscode.git%2Fclone%3Furl%3Dhttps%253A%252F%252Fgithub.com%252Frradczewski%252Fkata-bootstraps.git%26ref%3Droc) |
-|---|---|---|
-
-## Test Command
-
-```sh
-$ roc test
-```
-
-## References
-
-- [roc Tutorial](https://www.roc-lang.org/tutorial)
-- [roc Documentation](https://www.roc-lang.org/docs)
-- [Builtins](https://www.roc-lang.org/builtins)
diff --git a/roc/main.roc b/roc/main.roc
deleted file mode 100644
index cd4e6645..00000000
--- a/roc/main.roc
+++ /dev/null
@@ -1,11 +0,0 @@
-app [main] {
- # TODO: Renovate this
- pf: platform "https://github.com/roc-lang/basic-cli/releases/download/0.12.0/Lb8EgiejTUzbggO2HVVuPJFkwvvsfW6LojkLR20kTVE.tar.br"
-}
-
-import pf.Stdout
-
-main = Stdout.line "Hello, World!"
-
-expect Bool.true == Bool.true
-expect Bool.false == Bool.true
\ No newline at end of file
diff --git a/roc/roc.svg b/roc/roc.svg
deleted file mode 100644
index 408e06d4..00000000
--- a/roc/roc.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file