Jump to content
Wikipedia The Free Encyclopedia

Go! (programming language)

From Wikipedia, the free encyclopedia
Multi-paradigm programming language
For the language released in 2009 by Google, see Go (programming language).
Go!
Paradigm Multi-paradigm: concurrent, logic, functional, imperative (object-based)
Designed by Francis McCabe, Keith Clark
First appeared2003; 22 years ago (2003)
Preview release
9-30-07 / September 30, 2007; 18 years ago (2007年09月30日)
Typing discipline strong
OS Unix-like
License GPLv2
Influenced by
Prolog [1]

Go! is an agent-based programming language in the tradition of logic-based programming languages like Prolog.[1] It was introduced in a 2003 paper by Francis McCabe and Keith Clark.[2]

Design

[edit ]

The authors of Go! describe it as "a multi-paradigm programming language that is oriented to the needs of programming secure, production quality and agent-based applications. It is multi-threaded, strongly typed and higher order (in the functional programming sense). It has relation, function and action procedure definitions. Threads execute action procedures, calling functions and querying relations as needed. Threads in different agents communicate and coordinate using asynchronous messages. Threads within the same agent can also use shared dynamic relations acting as Linda-style tuple stores."[2]

The authors also propose that the language is suitable for representing ontologies due to its integration of logic, functional and imperative styles of programming.[3]

Example

[edit ]

The following example illustrates the "ontology-oriented" type and declarations style of Go!:[3]

Sex ::= male | female.
person <~ {dayOfBirth:[] => day.
 age:[] => integer.
 sex:[] => Sex.
 name:[] => string.
 home:[] => string.
 lives:[string]{}}.
person:[string, day, Sex, string] $= person.
person(Nm, Born, Sx, Hm)..{
 dayOfBirth() => Born.
 age() => yearsBetween(now(), Born).
 sex() => Sx.
 name() => Nm.
 home() => Hm.
 lives(Pl) :- Pl = home().
 yearsBetween:[integer, day] => integer.
 yearsBetween(...) => ..
}.
newPerson:[string, day, Sex, string] => person.
newPerson(Nm, Born, Sx, Hm) => $person(Nm, Born, Sx, Hm).
  • The ::= rule defines a new algebraic data type, a data type with only data constructors.
  • The <~ rule defines an interface type - it indicates what properties are characteristic of a person and also gives type constraints on these properties. It documents that age is a functional property with an integer value, that lives is a unary relation over strings, and that dayOfBirth is a functional property with a value that is an object of type day.
  • The $= type rule indicates that there is also a theory label, with the functor person, for a theory that defines the characteristic properties of the person type - implements the person interface - in terms of four given parameters of types string, day , Sex, and string.

Conflict with Google

[edit ]

In November 2009, Google released a similarly named Go programming language (with no exclamation point). McCabe asked Google to change the name of their language as he was concerned they were "steam-rolling over us".[1] [4] The issue received attention among technology news websites, with some of them characterizing Go! as "obscure".[5] The issue thread opened on the subject was closed by a Google developer on 12 October 2010 with the custom status "Unfortunate" and with the following comment: "there are many computing products and services named Go. In the 11 months since our release, there has been minimal confusion of the two languages."[6]

References

[edit ]
  1. ^ a b c Claburn, Thomas (2009年11月11日). "Google 'Go' Name Brings Accusations Of 'Evil'". InformationWeek. Archived from the original on 2010年07月22日. Retrieved 2009年11月14日.
  2. ^ a b Clark, K.L.; McCabe, F.G. (2003). "Go! For multi-threaded deliberative agents". Proceedings of the second international joint conference on Autonomous agents and multiagent systems. pp. 964–965. CiteSeerX 10.1.1.117.184 . doi:10.1145/860575.860747. ISBN 978-1581136838. S2CID 2047545.
  3. ^ a b Clark, K. L.; McCabe, F. G. (2006). "Ontology oriented programming in go!". Applied Intelligence. 24 (3): 189–204. doi:10.1007/s10489-006-8511-x.
  4. ^ "Issue 9 - go - I have already used the name for *MY* programming language". 2009年11月10日. Retrieved 2009年11月14日.
  5. ^ Brownlee, John (2009年11月13日). "Google didn't google "Go" before naming their programming language". Geek.com. Archived from the original on 2012年05月06日. Retrieved 2010年01月18日.
  6. ^ "I have already used the name for *MY* programming language · Issue #9 · golang/go". GitHub. Retrieved 2019年07月04日.

Further reading

[edit ]
[edit ]

AltStyle によって変換されたページ (->オリジナル) /