import * as React from "react"; import Image from "next/image"; import { Text, Classes, Drawer, TextProps, Divider } from "@blueprintjs/core"; import breakpointsImg from "./assets/guide-breakpoints.png"; import execControlsImg from "./assets/guide-exec-controls.png"; import infoBtnImg from "./assets/guide-info-btn.png"; import syntaxCheckImg from "./assets/guide-syntax-check.png"; const BigText = (props: TextProps & { children: React.ReactNode }) => { const { children, ...rest } = props; return ( {children} ); }; const SideBySideSection = (props: { title: string; children: React.ReactNode; image: JSX.Element; }) => { return (

{props.title}

{props.image}
{props.children}
); }; const SyntaxCheckSection = () => { return ( } >

Esolang Park checks the syntax of your source code{" "} while {"you're"} typing. Any errors in the syntax of your program are highlighted in the editor.

); }; const BreakpointsSection = () => { return ( } >

Esolang Park allows you to set debugging breakpoints in your code . When you run your program and execution reaches a line with breakpoint, the program will pause and you can inspect its state.

Click on the left of any line number to set a breakpoint on that line. Click on the red circle to remove the breakpoint.

); }; const ExecControlsSection = () => { return (

Pause, inspect and step through execution

execution controls

When your run a program, the {'"Run code"'} button changes to the execution controls. Pause execution to{" "} inspect the runtime state, start stepping through execution, change the execution interval or stop execution entirely .

The execution interval dictates how fast your program should be run by Esolang Park. This must be at least 5ms.

); }; type Props = { isOpen: boolean; onClose: () => void; }; export const FeaturesGuide = (props: Props) => { return (
); };