How To Install ats-lang-anairiats-examples on Kali Linux
Introduction
In this tutorial we learn how to install ats-lang-anairiats-examples on Kali Linux.
What is ats-lang-anairiats-examples
ats-lang-anairiats-examples 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 examples of the language.
There are three methods to install ats-lang-anairiats-examples 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-examples Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install ats-lang-anairiats-examples using apt-get by running the following command:
sudo apt-get -y install ats-lang-anairiats-examplesInstall ats-lang-anairiats-examples Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install ats-lang-anairiats-examples using apt by running the following command:
sudo apt -y install ats-lang-anairiats-examplesInstall ats-lang-anairiats-examples 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 updateAfter updating apt database, We can install ats-lang-anairiats-examples using aptitude by running the following command:
sudo aptitude -y install ats-lang-anairiats-examplesHow To Uninstall ats-lang-anairiats-examples on Kali Linux
To uninstall only the ats-lang-anairiats-examples package we can use the following command:
sudo apt-get remove ats-lang-anairiats-examplesUninstall ats-lang-anairiats-examples And Its Dependencies
To uninstall ats-lang-anairiats-examples 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-examplesRemove ats-lang-anairiats-examples Configurations and Data
To remove ats-lang-anairiats-examples configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge ats-lang-anairiats-examplesRemove ats-lang-anairiats-examples configuration, data, and all of its dependencies
We can use the following command to remove ats-lang-anairiats-examples configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ats-lang-anairiats-examplesDependencies
ats-lang-anairiats-examples have the following dependencies:
References
Summary
In this tutorial we learn how to install ats-lang-anairiats-examples package on Kali Linux using different package management tools: apt, apt-get and aptitude.