How To Install ats-lang-anairiats-doc on Kali Linux

In this tutorial we learn how to install ats-lang-anairiats-doc on Kali Linux. ats-lang-anairiats-doc is Documentation for the ATS compiler Anairiats

Introduction

In this tutorial we learn how to install ats-lang-anairiats-doc on Kali Linux.

What is ats-lang-anairiats-doc

ats-lang-anairiats-doc is:

ATS is a programming language with a highly expressive type system rooted in the framework Applied Type System. In particular, both dependent types and linear types are available in ATS. The current implementation of ATS (ATS/Anairiats) is written in ATS itself. It can be as efficient as C/C++ and supports a variety of programming paradigms.

In addition, ATS contains a component ATS/LF that supports a form of (interactive) theorem proving, where proofs are constructed as total functions. With this component, ATS advocates a programming style that combines programming with theorem proving. Furthermore, this component may be used as a logical framework to encode various deduction systems and their (meta-)properties.

This package contains some documentation for the language.

There are three methods to install ats-lang-anairiats-doc on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install ats-lang-anairiats-doc Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install ats-lang-anairiats-doc using apt-get by running the following command:

sudo apt-get -y install ats-lang-anairiats-doc

Install ats-lang-anairiats-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install ats-lang-anairiats-doc using apt by running the following command:

sudo apt -y install ats-lang-anairiats-doc

Install ats-lang-anairiats-doc Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install ats-lang-anairiats-doc using aptitude by running the following command:

sudo aptitude -y install ats-lang-anairiats-doc

How To Uninstall ats-lang-anairiats-doc on Kali Linux

To uninstall only the ats-lang-anairiats-doc package we can use the following command:

sudo apt-get remove ats-lang-anairiats-doc

Uninstall ats-lang-anairiats-doc And Its Dependencies

To uninstall ats-lang-anairiats-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove ats-lang-anairiats-doc

Remove ats-lang-anairiats-doc Configurations and Data

To remove ats-lang-anairiats-doc configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge ats-lang-anairiats-doc

Remove ats-lang-anairiats-doc configuration, data, and all of its dependencies

We can use the following command to remove ats-lang-anairiats-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge ats-lang-anairiats-doc

Dependencies

ats-lang-anairiats-doc have the following dependencies:

References

Summary

In this tutorial we learn how to install ats-lang-anairiats-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.