About 137,000 results
Open links in new tab
  1. Racket

    Racket allows programmers to add new syntactic constructs in the same way that other languages permit the formulation of procedures, methods, or classes. All you need to do is formulate a simple …

  2. Racket Documentation

    Running raco docs (or Racket Documentation on Windows or Mac OS) may open a different page with local and user-specific documentation, including documentation for installed packages.

  3. The Racket Guide

    Chapter 2 provides a brief introduction to Racket. From Chapter 3 on, this guide dives into details— covering much of the Racket toolbox, but leaving precise details to The Racket Reference and other …

  4. Download Racket

    The distribution includes pre-built, platform-independent bytecode; it installs much faster than plain source, and it is also compatible with fast installs of additional Racket packages.

  5. Quick: An Introduction to Racket with Pictures

    For experienced programmers, to continue touring Racket from a systems-oriented perspective instead of pictures, your next stop is More: Systems Programming with Racket. To instead start learning …

  6. 2.2 Simple Definitions and Expressions - Racket

    Editors like Emacs offer a Racket or Scheme mode with similar indentation support. Re-indenting not only makes the code easier to read, it gives you extra feedback that your parentheses match in the …

  7. Getting Started - Racket

    The Racket Guide describes the rest of the Racket language, which is much bigger than the learning-oriented languages of the textbook. Since you learned functional programming from the textbook, …

  8. Racket: From PLT Scheme to Racket

    At the same time, instead of having to say “PLT's main variant of Scheme,” programmers can now simply say “Racket” to refer to the specific descendant of Scheme that powers PLT's languages and …

  9. Racket Package Index

    Racket Packages These are the packages in the official package catalog. raco pkg install package-name installs a package. You can add your own packages to the index.

  10. 4.7 Conditionals - Racket

    Racket’s and and or are syntactic forms, rather than functions. Unlike a function, the and and or forms can skip evaluation of later expressions if an earlier one determines the answer.