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 icontVerification
Check the installed Icon version:
icont -versionWriting and Executing Code
Create an Icon source file named hello.icn:
procedure main()
write("Hello, World!")
endCompile and run the program:
icont hello.icn -x