Particles Frequently Asked Questions

Below is a list of questions that are commonly asked by people who are new to Particles. If you have a question not listed here please ask us on Twitter or by posting a message to the World Wide Scroll Subreddit.

Overview

What was the old name?

Particles was originally called Scroll Notation and before that Tree Notation.

What is Particles?

Particles is a simple syntax that Scroll is built on top of.

For programmers, this might give you an idea of the structure behind Particles:

particleBreakSymbol = "\n" // New lines separate particles edgeSymbol = " " // Increasing indent to denote parent/child relationship interface Particle { children: Particle[] line: string }

Code or information represented in a Scroll Dialect therefore always has a similar appearance - it is indented to show structure, rather than (necessarily) using the symbols you might see in traditional programming languages such as C++ and Java - and languages intended for data storage and communication, such as XML and JSON.

This simple, yet powerful, base structure may looks a little like Python, Visual Basic, YAML - or 'Domain Specific Languages' written 'on top' of existing programming languages. This isn’t by accident: such languages were designed to look similar to natural language, using words over symbols and indentation to denote structure.

Here’s an example of a minimal HTML document represented in a Scroll Dialect:

html body div γŠγ―γ‚ˆγ†γ”γ–γ„γΎγ™

One important feature of Particles is that due to its simplicity and consistency, Scroll Dialects are easy to write - and code or information represented in a Scroll Dialect is easy to syntax check (and highlight) - and autocomplete.

(Thank you to @vakradrz for this answer)

There are already over 10,000 programming languages and over 1,000 syntax systems like JSON, XML and BNF, why create another one?

There is only 1 binary. Particles is more like binary than it is like a programming language. Particles is a basic building block that you can build higher level languages on top of. Particles is an error-free base syntax like binary.

This is our current stack of computer languages:

1 Binary => 1,000+ Syntaxes => 10,000+ languages

In the future we think the stack may look like this:

1 Binary => 1 Particles => 10,000+ Scroll Languages

We all use software tools to build software. Particles makes building these tools easier, and as more people join the Particles ecosystem there may be significant network effects. If Jane is building a Scroll Dialect and tools for automating train schedules, and John is building a Scroll Dialect and tools for doing cancer research, even though their 2 domains are very different, they can share a lot of the tools and code.

What's the difference between Particles and Scroll Dialects?

Particles is a base level syntax. Generally users use Scroll Dialects, which make Particles useful. The Scroll Dialect Grammar is a tool to make it easier to build Scroll Dialects.

What is special about Particles?

Particles may seem similar to notations like JSON, XML, YAML or S-expressions. However, Particles is the most minimal, has an isomorphism to Euclidean geometry, and the concept of syntax errors does not exist. These differences may make Particles substantially different and may cause a significant improvement in computing.

What major problems in computer science does help Particles solve?

The data science app Ohayo is in part an experiment to test these 3 advantages of Particles.

What is a basic example of Particles for file formats?

Currently all Node.js npm projects contain a package.json file. While this is simple, it could be simpler using Particles, and better. Let's take a look.

package.json:

{ "name": "mypackage" "version": "2.1.1" "description": "A package", "repository": { "type": "git", "url": "git://github.com/username/mypackage" } }

package.npm:

name mypackage version 2.1.1 description A package repository type git url git://github.com/username/mypackage

It may look like the only benefit is fewer syntax characters, but there's actually more we can now do. Our package.npm grammar file gets typechecking, autocomplete, tailored syntax highlighting, can support multiline strings, strings without quotes that don't require escaping, comments, and more.

Note: the JSON example above works correctly, but JSON and Particles are not equivalent by default, since JSON does not support certain structures and Particles does not implement all JSON types by default. If you want JSON features such as keys with spaces, numbers, or arrays, you'll need to use a higher level Scroll Dialect such as Dug that has a 1-to-1 relationship to JSON.

What is a basic example of Particles for programming languages?

In the example below, Particles is used as a base for a math Scroll Dialect where traditionally S-Expressions/Lisp might be used.

make8.math:

multiply add 1 1 add 2 2

make8.lisp:

(* (+ 1 1) (+ 2 2))

The second example contains 13 parts, whereas the first only has 7. There are also infinite ways to represent the second example, since the compiler ignores insignificant whitespace, whereas in the first there is only 1 way to represent that particular structure.

What are some advanced examples of Particles in action?

Check out the Ohayo project or the Scroll Dialect Designer.

How can I build a new Scroll Dialect?

A good place to start is with our simple $Scroll Dialect Builder$.

Where can I use Particles?

Everywhere! Anywhere you use programming languages or encodings, you can use Particles. Hopefully a Particles Ecosystem will grow, if Particles turns out to be a good idea. Until then use it wherever and don't be shy about asking for help.

What are some examples of Scroll microlangs?

There are over a dozen example microlangs in the ScrollSDK GitHub repo. Here's a language that compiles to HTML, a language similar to Make, and a language that does simple math .

Languages that add numbers or compile to HTML are cute, but are there any advanced Scroll Dialect?

Currently the most advanced somewhat-useful Scroll Dialect is OhayoLang, the dataflow language in the data science studio Ohayo. In 2023, OhayoLang could be a competitive rival to Python or R for 80% of data science tasks. Another very powerful language is Grammar, which is similar to ANTLR or Racket in that it's a language for building languages. However, in 2023 the most powerful Scroll Dialect could be yours!

Structure

What is the difference between Particles and Scroll Dialects?

There is an important distinction between Particles and Scroll Dialects. Particles is a simple dumb format for encoding Tree Data structures. Scroll Dialects give you higher level semantics. There is not a single general purpose "Scroll Dialect", like you might expect if you come from the Racket or Lisp worlds. Instead, there are many independent general purpose "Scroll Dialects" with any semantics desired by the language designer(s).

What are the data structures in Particles?

This is the base Particles:

particleBreakSymbol = "\n" // New lines separate particles edgeSymbol = " " // Increasing indent to denote parent/child relationship interface Particle { parent: &Particle children: Particle[] line: string }

The Tree is the data structure in Particles. Types like booleans, ints and vectors only exist at the higher level Scroll Dialect level. The theory behind Particles is that concepts like booleans, ints and vectors are just kinds of Trees.

Higher level Scroll Dialects are where additional concepts can be added like strings, integers, booleans, control flow, assignment, encapsulation, functions, and so forth.

What are the basic terms when talking about things written in Particles?

Example:

if true print Hello world

In Particles, the units of measure are words and particles. Each line is equal to one particle. The example program above has 5 words and 2 particles. In this language the particleType is determined by the first words (if and print). Notice how the second line in the program above is indented by one space, this makes the print particle a child particle of the line above it, the if particle.

If you are familiar with Lisp terminology, you can think of words as atoms.

Grammar files add the additional concept of cells, which can be thought of as placeholders and type information for words. Grammar files define new languages with particleTypes and cellTypes. In the example language above, the word "true" would be in a boolean cell type.

Here is a longer spec.

Does Particles use tabs or spaces?

Particles uses a single space to indent blocks which indicates parent/child relationship. You can only increase the indent level one level at a time.

Does Particles work on Windows?

Yes. Particles only uses the \n character to separate particles/lines. \r is either ignored or treated as a content character. In practice it's easier to drop all \r :).

Does Particles support Unicode or just ASCII?

Particles supports all encodings. This is perfectly valid Particles:

html body div γŠγ―γ‚ˆγ†γ”γ–γ„γΎγ™

In fact, there is no such thing as an invalid Particles document at the base level, just as there is no such thing as an "invalid binary sequence".

Usually when using Particles you use a higher level grammar, called a Scroll Dialect, and so you can still have invalid programs in that language (because of typos, for example) even though your Particles is valid.

How do I escape characters?

In Particles you never need to escape characters. If your particle spans across multiple lines, simply indent the child lines by one space more than their parent, leave the rest of the line as is, and ensure your particleType definition treats child particles as one block. Some Scroll Dialects might have the notion of escape characters in certain places, but there's no such thing at the Particles base layer.

Does Particles directly map to XML or JSON?

No. A subset of Particles does, but for perfect one-to-one matching you'll want to use a Scroll Dialect specifically designed for that language.

Can I use Particles with any programming language?

Yes! The ScrollSDK provides Particles support for TypeScript and Javascript, but someday there may be Particles and Parser implementations in all programming languages, similar to how most languages nowadays have JSON libraries.

If you want to build a Particles library for your language, there is a meta project intended to help!

Project Status

Who makes Particles, and is it open source?

Particles is free and open source. The Particles Lab is a distributed research group started in Hawaii that works on the core Particles infrastructure projects. The plan is to build the infrastructure needed to test whether Particles is a good idea. If it is, get a broader Particles ecosystem growing.

Is Particles ready for production use?

Sort of! Particles is ready for early adopters. If you use Particles today, you probably will want to stay up to date with what's happening as the tooling is still rapidly evolving.

If you'd prefer to wait until most of the details are settled, late 2023 is probably a better time to start using it.

How can I help?

Thank you for asking! There's plenty of work to be done. Particularly important needs now are someone with project management skills to help organize and lead the team, someone to do community organizing/evangelism, dev leads to make libraries in various languages, testers to do cross platform testing, and more. Get in touch if you want to help.

Editing Tips

How can I copy and paste code in Particles and have the editor ensure correct indentation?

Look for a "Paste and indent" command. For example, in Sublime Text you can click Edit->Paste and Indent, or press Cmd+Shift+v.

Do I have to count the spaces?

No. We strongly recommend using an editor that supports Particles with syntax highlighting, indentation help and more (if we don't have support for your favorite editor yet, please help us add it!). If you are finding it difficult to use Particles, that's just because the editor support is in the early stages. Please let us know what problems you are having so we can get them fixed.

For Advanced Scroll Dialect Creators

What are the benefits to writing a "Grammar" file to create my Scroll Dialect?

By creating 1 file in Grammar, you get a new programming language with autocomplete, syntax highlighting, type-checking, help, integration tests, compiling, and more. The goal of Grammar is to help you create a new, robust, well tested language as easily as possible.

Can I use infix notation, postfix notation, or pattern matching?

Yes! As of ScrollSDK 35, Parsers supports other notations. Originally only prefix notation was supported without writing a decent amount of target code.

Can I do inline Trees?

Yes! While not supported at the base Particles level, your individual particles can certainly have inline trees. Often your Scroll Dialects will have particles that contain content written in traditional languages like Javascript, Lisp, or Python. Or you could even have inline trees written in Particles, except using something like the pipe character as particleBreakSymbol instead of the newline character.

Lisp Related Questions

How is this different from S-Expressions?

It is largely accurate to say Particles is S-Expressions without parenthesis. But this makes them very different! Particles gives you fewer chances to make errors, easier program concatenation and ad hoc parser writing, easier program synthesis, easier visual programming, easier code analysis, and more.

Is Particles just Lisp?

No. It is largely accurate to say Particles is S-Expressions without parenthesis. However, Particles has a useful geometric isomorphism that S-Expressions/Lisp lack, that might have significant network effects.

What's an example of "ad hoc" parsing that you can do with Particles that you cannot do with S-Expressions?

If you have a Scroll Dialect with a root particleType named folder, and you want to rename the keyword of that particleType to project, you can easily do it with an ad-hoc regex: s/^folder/project/. This would be type safe, even if you started parsing in the middle of the document. You cannot do that with S-Expressions, as you'd have to first parse the document into a Tree data structure, and could not operate on it as a string.

What's something else you can do with Particles that you can't do with Lisp?

Easy program concatenation. For example, in Particles you can create valid new programs simply by appending strings, whereas in Lisp you might first have to do some parentheses removing and inserting.

What's something else that is worse in Lisp?

In Lisp you have to escape certain characters. In Particles, you never need to escape characters. (Note: although you are 100% free to design Scroll Dialects that implement escape characters, that is almost never necessary).

History

Are there any papers written about Particles?

You can read the half-baked papers about Particles.

The basic gist of the theory is that all structures are trees, Particles is all you need to represent trees, and by building things up from Particles we might be able to make things simpler AND better.

Which language influenced Particles the most?

Syntactically there's no question--it was HAML. See the origin story below if you are curious why. Semantically there's been a lot of influences from thousands of languages. Particularly influential ones are Lisp, Haskell, Racket, ANTLR, TypeScript, C#, Python, Scheme, Javascript, COBOL, Rebol, Mathematica, APL, R, Red-Lang, Fortran, Forth, C++, JSON, XML, HTML, CSS, SQL, somewhat, but not necessarily, in that order.

Who is the first person to discover Particles?

Breck Yunits et al. came up with Particles circa 2012. However, it turns out in 2003 Egil MΓΆller proposed "I-Expressions", or "Indentation-sensitive syntax", an alternative to S-Expressions in Scheme that is 80% similar to Particles. A few implementation details weren't ideal, but the core is largely the same.

Why didn't I-Expressions catch on?

Not sure. Perhaps because it was pitched as a different way to write Lisp, and that was it. With Particles, coming up with an improved way to write Lisp was never a primary goal. Our primary goals have been to enable visual programming, simpler APIs, cleaner code and program synthesis, for which Particles is an ideal tool.

How was Particles discovered?

If Particles turns out to be a good idea, below is the origin story.

The year was 2012. Barack Hussein Obama was president, Prettier hadn't been released yet, and humans talked to other humans more than Alexa. Our startup NudgePad was building a visual web page editor in our office in San Francisco, which was located in the backroom of a warehouse that built wooden pianos by hand. In comparison to Nudge Inc., the wooden piano business was _booming_. With NudgePad, users could drag, drop and edit their web pages without touching any code. It worked awesome, at least 1 percent of the time. As the user was editing their pages visually, we coded NudgePad to read and write the language HAML, which I had learned at my previous job. I ended up needing to write my own HAML parser and code generator for reasons long since forgotten. Because we were a broke startup, I kept trying to cut syntax from the language to save time and money. Every now and then I would remove some syntax character from our HAML clone and still somehow get everything in NudgePad to work. Eventually the language was just spaces, newlines, and colons. And then there was an "aha!" moment. I remember I was walking to work, going over the code in my head, and had just reached the 101 overpass when I realized I could dump the colons! I went straight to my desk, opened up my editor, and a couple hours later had removed the colons and everything still worked. I remember at the time thinking that was potentially a profound idea but I _was positive_ someone had built it already. I thought there was no chance it hadn't been invented yet because it was so simple. But for years I'd ping folks in industry, post on message boards, and do a lot of Google searches. It took me years of searching for it before I thought maybe no had noticed and leveraged this idea before. 5 years later I had another "aha" moment when I realized it would also be a good base notation for _any_ type of computer language, and wrote a paper about it. Which went on to be cited over (editor's note: it says "zero" here, is that correct?) times.

Other

Did you know that if you think this could grow to rival the web you are an idiot?

Thank you for reminding us the web was not built in a day!

How confident are you that this is a good idea?

If you round up, 10%. But in the 90% chance that this is not a good idea, attempting to prove that it is a good or a bad idea seems to be a promising line of research.

What is the Zen of Particles?

Rule #1. Put it in a Scroll Dialect.

End of Rules.

Built with Scroll v125.6.0