TIDE
Languages

Icon

Installing Icon on Ubuntu in TIDE

Icon

Icon is a high-level, goal-directed programming language designed for string processing and data structure manipulation, developed at the University of Arizona.

Installation

Install Icon via Ubuntu's package manager apt:

apt update
apt install -y icont

Verification

Check the installed Icon version:

icont -version

Writing and Executing Code

Create an Icon source file named hello.icn:

procedure main()
    write("Hello, World!")
end

Compile and run the program:

icont hello.icn -x

Official Resources

On this page