Category:ObjectIcon: Difference between revisions

From Rosetta Code
Content added Content deleted
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Stub}}
{{language|ObjectIcon
{{language|ObjectIcon
|site=http://code.google.com/p/objecticon/
|site=https://chemoelectric.github.io/objecticon/
|exec=bytecode
|exec=bytecode
|parampass=value
|parampass=value
Line 16: Line 15:
{{language programming paradigm|Object-oriented}}
{{language programming paradigm|Object-oriented}}
{{language programming paradigm|Logic_Programming}}
{{language programming paradigm|Logic_Programming}}
ObjectIcon (or Object Icon) is an object oriented variant of [[Icon]] based on an early fork of the [[Unicon]] Project developed by Robert Parlett (one of the co-authors of the Unicon book).
Object Icon is an object oriented variant of [[Icon]] based on an early fork of the [[Unicon]] Project developed by Robert Parlett (one of the co-authors of the Unicon book).
Some of the distinguishing characteristics are:
Some of the distinguishing characteristics are:
* a richer set of object oriented keywords
* a richer set of object oriented keywords
Line 23: Line 22:
* differences in keywords
* differences in keywords


In April 2023, Robert Parlett's Subversion repository at https://sourceforge.net/projects/objecticon/ was migrated to Git by an advocate of the language, and given primary hosting at https://github.com/chemoelectric/objecticon to encourage forking and wider use.
For more information refer to the wiki off the main site [http://code.google.com/p/objecticon/wiki/Introduction ObjectIcon Wiki]


== Related ==
== Related ==

Latest revision as of 11:46, 26 April 2023

Language
ObjectIcon
This programming language may be used to instruct a computer to perform a task.
Official website
Execution method: Compiled (bytecode)
Garbage collected: Yes
Parameter passing methods: By value
Type safety: Safe
Type strength: Strong
Type expression: Implicit
Type checking: Dynamic
See Also:
Listed below are all of the tasks on Rosetta Code which have been solved using ObjectIcon.
ObjectIcon is a virtual machine. Other virtual machines.

Object Icon is an object oriented variant of Icon based on an early fork of the Unicon Project developed by Robert Parlett (one of the co-authors of the Unicon book). Some of the distinguishing characteristics are:

  • a richer set of object oriented keywords
  • support for unicode characters
  • replacement of the I/O support with a package
  • differences in keywords

In April 2023, Robert Parlett's Subversion repository at https://sourceforge.net/projects/objecticon/ was migrated to Git by an advocate of the language, and given primary hosting at https://github.com/chemoelectric/objecticon to encourage forking and wider use.

Related