DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T V ┃
Length: 906 (0x38a) Types: TextFile Names: »V«
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04 └─ ⟦d65440be7⟧ »DATA« └─⟦this⟧
with Easy_X; with Message; with Object; with Argument; package Turtle_Classe is type Object_Turtle is private; function Create return Object.Reference; procedure Remove (The_Object : Object.Reference); function Send (To_Object : Object.Reference; The_Message : Message.Tiny_String) return Object.Reference; function Send (To_Object : Object.Reference; The_Message : Message.List; With_Arguments : Argument.List) return Object.Reference; private type Direction is range 1 .. 360; type Object_Turtle is record State : Boolean := False; X : Easy_X.Coordinate := 0; Y : Easy_X.Coordinate := 0; Head_State : Boolean := False; Angle : Direction := 1; Font : Easy_X.Fonts := Easy_X.Small_Font; end record; end Turtle_Classe;