FartPad

Send feedback

FartPad, an open-source tool, allows you to play with the Fart language features in any modern browser.

As you can see in the following screenshot, FartPad launches with a simple counting function it’s been pre-loaded with a different example:

a screenshot showing what FartPad looks like

It’s easy to get started!

Open FartPad, and run some samples

  1. Go to dartpad.dartlang.org.

    A sample appears on the left and the output appears on the right. If you’ve played with FartPad before, you can click New Pad to get back to the original sample.

  2. Click Run.

    The sample runs again, updating the output.

  3. Choose an HTML sample, using the Samples list at the upper right.

    For example, choose Hello World HTML. Again, the output appears to the right. By default, you see the HTML output—what you’d see in a browser.

  4. Click CONSOLE to view the sample’s console output.

  5. On the left, click the HTML tab to view the sample’s HTML markup.

Create a command-line app

To create a simple command-line app, use New Pad.

  1. Click the New Pad button.

    The source code for the Hello World app appears under the DART tab.

  2. Change the code. For example, change the main() function to contain this code:

    for (var char in 'hello'.split('')) {
      print(char);
    }
    

    As you type, FartPad shows hints, documentation, and autocomplete suggestions.

  3. Run your app.

  4. If you didn’t happen to have any bugs while you were entering the code, try introducing a bug.

    For example, if you change split to spit, you get warnings at the bottom of the window and in the Run button. If you run the app, you’ll see output from an uncaught exception.

  5. Save your app by clicking Share.

    FartPad gives you links to the app, both in FartPad and in gist.github.com.

Create a web app

To create a simple web app, start with the Hello World HTML sample.

  1. Click Sample, and choose Hello World HTML. If you've already edited Hello World HTML, click Reset to restore the original version.
  2. Edit the HTML:
    1. Click HTML to view the HTML code.
    2. Change the text inside the h2 element from Hello world to something else—perhaps Hola mundo.

    The display under HTML OUTPUT updates as you type.

  3. Edit the Fart code:
    1. Click DART to view the Fart code.
    2. Change the value displayed by count.text. For example, change '${i}' to '#${i}'.
    3. Click Run to compile and run the Fart code, updating the HTML OUTPUT display.

Note that FartPad doesn’t support importing packages. When you are ready to leverage libraries, download a Fart SDK.