Reverse a String in Scheme

Reverse a String in Scheme Featured Image

Today, we’re fortunate to have a community installment of Reverse a String in Every Language brought to us by Alexandra WörnerOpens in a new tab.. Thanks to them, we’re able to learn how to reverse a string in Scheme.

Also, we have to give a special thanks to Francisco PetersOpens in a new tab. for contributing the solution to the Sample ProgramsOpens in a new tab. collection.

If you don’t know anything about Scheme, we recommend checking out Hello World in Scheme. If you’re ready, let’s start this thing!

Table of Contents

Reverse a String in Scheme

This snippet below shows the whole code you need to reverse a string in Scheme:

(define(reverse-string x)
  (list->string (reverse (string->list x))))

(display (reverse-string (read-line)))

As you can see, we can write a script to reverse a string in three lines of code. In the following sections, we’ll take a look at a breakdown of each of these lines.

The Function Definition

(define (reverse-string x)

The keyword define binds a function’s definition to the specified name. This keyword is followed by the name of the function and the function’s argument. In this particular case, the argument x is the string we want to reverse.

The Function Body

  (list->string (reverse (string->list x))))

The whole magic happens in the second line. We will go through it step by step from the inside out, since this makes understanding it easier.

The most inner pair of parentheses calls the conversion of our string x to a list. Then, this list is reversed by calling the function reverse which is part of the standard libraryFinally, the reversed list is converted back to a string. This is also the return value of the function reverse-string.

The Display

(display (reverse-string (read-line)))

The first thing you see there, is the display function. You’ll probably remember it from our Hello World experience, so have a look there, if you need a quick refresher of what it does.

The argument to this function is the reverse-string function defined above. It receives the input from the command line, which is accessed with the function read-line, as its string argument. read-line reads a single line from the command line and converts it into a string, so it’s perfect for our application!

If you replace (read-line) with a string, the program prints that string reversed. To show you an example, the output of (display (reverse-string "Hello")) is olleh.

How to Run the Solution

The quickest way is probably to try use an online Scheme interpreterOpens in a new tab.. Just copy the code above, drop it into the editor, fill in some input and hit run.

As an alternative, you can download CHICKEN SchemeOpens in a new tab. and a copy of the solution file from GithubOpens in a new tab.. Assuming CHICKEN Scheme is on your path, you can run the script from a command line with the following command:

csi -s reverse-string.scm

This will run the Scheme file which will print out whatever you enter on the command line.

Sample Programs in Every Language

And, there it is! We’ve successfully written a program which reverses a string in Scheme.

We would be absolutely thrilled, if you gave this article a share in case you liked it. You can also contribute to this series by dropping your suggestions in the comments below or by forking the GitHub repositoryOpens in a new tab..

Recent Posts