How to Install LISP on MacOS? Last Updated : 29 Oct, 2021 Comments Improve Suggest changes 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 How to Install Java on macOS? The Java Development Kit (JDK) is an essential tool for developers working with Java. It provides the necessary tools and libraries to build, compile, and run Java applications, making it a cornerstone for efficient and effective Java development. Without the JDK, writing and testing Java programs w 7 min read How to Install PHP on MacOS? PHP (Hypertext Preprocessor) is known as a general-purpose scripting language that can be used to develop dynamic and interactive websites. It was among the first server-side languages that could be embedded into HTML, making it easier to add functionality to web pages without needing to call extern 3 min read How to Install PIL on MacOS? PIL is an acronym for the python image library. It is a library that is used to manipulate images, using PIL library with python we can perform various operations on images. In this article, we are going to learn how we can install PIL on MacOS. Method 1: Using PIP to install PIL (Pillow). Python co 1 min read How to Install LibreOffice on MacOS? LibreOffice is a computer application that is a complete office suite for handling different files and work on them. It is an open-source software. It is free for use and is written in XML, Java, and C++. The development credit of LibreOffice goes to The Document Foundation and to the author Star Di 2 min read How to Install Weka on MacOS? Weka is computer software and its full form is Waikato Environment for Knowledge Analysis, it was built to fulfil the purpose of data mining and it is used in the field of data science. It is open-source software that is built using Java programming language. It is free and can be run on different p 2 min read Like