How to Install LISP on MacOS? Last Updated : 29 Oct, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report Lisp is one of the oldest programming languages. It was invented back in the 1950s by John McCarthy. Lisp is a so-called meta-programming language or a symbolic programming language. It can be used for any sort of task. It's a general-purpose language. It is the second-oldest high-level programming language. In this tutorial, we are going to see how we can install LISP on macOS. Installing LISP on macOS : Install the SBCL, a lisp compiler by running the following command: SBCL stands for Still Bank Common Lisp, it is a compiler for common lisp programming language. brew install sbcl Output: installing sbcl Run the following command in the terminal to install lisp onto your macOS : brew install clisp Output: installing clisp Running a lisp program: Open up any text editor and write the following hello world program and save it with extension as a .lisp. ; hello world program using the CLISP language (print "Welcome to GeeksforGeeks") Save it as a .lisp extension. E.g. save it as geeks.lisp. Now to execute the code, run the following command: sbcl --script geeks.lisp Output: Here, sbcl is a compiler, and the --script flag represents that we are going to run a lisp script file. Comment More infoAdvertise with us Next Article How to Install LISP on MacOS? A amnindersingh1414 Follow Improve Article Tags : LISP Installation Guide how-to-install Similar Reads How to Install Kotlin on MacOS? Kotlin is an open-source programming language. It is developed by JetBrains and is designed to be a modern, safe, and efficient language for building modern applications. It is a functional language means it is based on the functional paradigm. It is a compiled language, which means it compiled to b 4 min read How to Install Keras on MacOS? In this article, we will learn how to install Keras in Python on macOS. Keras is an open-source software library that provides a Python interface for artificial neural networks. Using pip to install Keras Package on MacOS: Follow the below steps to install the Keras package on macOS using pip: Step 1 min read How to Install iPython on MacOS? In this article, we will learn how to install iPython in Python on MacOS. IPython is a command shell for interactive computing in multiple programming languages, originally developed for the Python programming language, that offers introspection, rich media, shell syntax, tab completion, and history 2 min read How to Install C# on MacOS? C# is a programming language that is used for general purposes. But the C# programming language is classified as one of the High-Level programming languages. Unlike the C programming language, the C# programming language can be used in other tasks. There might be a significant similarity between the 4 min read How to Install C++ Libraries on MacOS? C++ is a general-purpose object-oriented programming(OOP) language that was developed as an enhancement of the C language and that's why the basic syntax and code structure of both C and C++ are the same. C++ is a crucial and compiled language. C++ is a middle-level language used in developing drive 2 min read Like