|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - download
Length: 664 (0x298) Types: TextFile Notes: R1k Text-file segment
└─⟦8527c1e9b⟧ Bits:30000544 8mm tape, Rational 1000, Arrival backup of disks in PAM's R1000 └─ ⟦cfc2e13cd⟧ »Space Info Vol 2« └─⟦a3f82f442⟧ └─⟦this⟧
with Text_Io; with Feu_Rouge; procedure Mes_Feux is F1, F2 : Feu_Rouge.Objet; Feu_1, Feu_2 : Feu_Rouge.Nom_Type; begin Feu_1 := "Feu1"; Feu_2 := "feu2"; Feu_Rouge.Init_Nom (F1, Feu_1); Feu_Rouge.Init_Nom (F2, Feu_2); Text_Io.Put_Line ("les feux demarrent"); Feu_Rouge.Demarrer (F1); delay 2.0; Feu_Rouge.Demarrer (F2); delay 10.0; Feu_Rouge.Changer_Tempo (F => F1, Tr => 4.0, To => 2.0, Tv => 4.0); Feu_Rouge.Changer_Tempo (F => F2, Tr => 4.0, To => 2.0, Tv => 4.0); delay 20.0; Feu_Rouge.Arreter (F1); delay 4.0; Feu_Rouge.Arreter (F2); Text_Io.Put_Line ("les feux s'arretent"); end Mes_Feux