Rename brainfuck

This commit is contained in:
2025-01-16 15:08:23 -08:00
parent d39da9af71
commit 54877e38a9
3 changed files with 8 additions and 8 deletions

24
pages/ide/bf.tsx Normal file
View File

@ -0,0 +1,24 @@
import React from "react";
import { NextPage } from "next";
import Head from "next/head";
import { Mainframe } from "../../ui/Mainframe";
import LangProvider from "../../languages/brainfuck";
const LANG_ID = "bf";
const LANG_NAME = "Turing";
const IDE: NextPage = () => {
return (
<>
<Head>
<title>{LANG_NAME}</title>
</Head>
<Mainframe
langId={LANG_ID}
langName={LANG_NAME}
provider={LangProvider}
/>
</>
);
};
export default IDE;