Rename brainfuck

This commit is contained in:
Mark 2025-01-16 15:08:23 -08:00
parent d39da9af71
commit 54877e38a9
Signed by: Mark
GPG Key ID: C6D63995FE72FD80
3 changed files with 8 additions and 8 deletions

View File

@ -10,7 +10,7 @@ const IDE: NextPage = () => {
return (
<>
<Head>
<title>{LANG_NAME} | Esolang Park</title>
<title>{LANG_NAME}</title>
</Head>
<Mainframe
langId={LANG_ID}

View File

@ -3,14 +3,14 @@ import { NextPage } from "next";
import Head from "next/head";
import { Mainframe } from "../../ui/Mainframe";
import LangProvider from "../../languages/brainfuck";
const LANG_ID = "brainfuck";
const LANG_NAME = "Brainfuck";
const LANG_ID = "bf";
const LANG_NAME = "Turing";
const IDE: NextPage = () => {
return (
<>
<Head>
<title>{LANG_NAME} | Esolang Park</title>
<title>{LANG_NAME}</title>
</Head>
<Mainframe
langId={LANG_ID}

View File

@ -1,10 +1,10 @@
[
{
"display": "Turing",
"id": "bf"
},
{
"display": "Befunge-93",
"id": "befunge93"
},
{
"display": "Brainfuck",
"id": "brainfuck"
}
]