Add Befunge-93

This commit is contained in:
Nilay Majorwar
2022-01-26 01:56:36 +05:30
parent 81a3563181
commit 45385a3266
18 changed files with 775 additions and 1 deletions

26
pages/ide/befunge93.tsx Normal file
View File

@ -0,0 +1,26 @@
import React from "react";
import { NextPage } from "next";
import Head from "next/head";
import { Mainframe } from "../../ui/Mainframe";
import { Header } from "../../ui/header";
import LangProvider from "../../engines/befunge93";
const LANG_ID = "befunge93";
const LANG_NAME = "Befunge-93";
const IDE: NextPage = () => {
return (
<>
<Head>
<title>{LANG_NAME} | Esolang Park</title>
</Head>
<div style={{ height: "100%", display: "flex", flexDirection: "column" }}>
<Header langName={LANG_NAME} />
<div style={{ flexGrow: 1 }}>
<Mainframe langName={LANG_ID} provider={LangProvider} />
</div>
</div>
</>
);
};
export default IDE;