Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
17
Task/Queue-Definition/SenseTalk/queue-definition-1.sensetalk
Normal file
17
Task/Queue-Definition/SenseTalk/queue-definition-1.sensetalk
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
set myFoods to be an empty list
|
||||
|
||||
push "grapes" into myFoods
|
||||
push "orange" into myFoods
|
||||
push "apricot" into myFoods
|
||||
|
||||
put "The foods in my queue are: " & myFoods
|
||||
|
||||
pull from myFoods into firstThingToEat
|
||||
|
||||
put "The first thing to eat is: " & firstThingToEat
|
||||
|
||||
if myFoods is empty then
|
||||
put "The foods list is empty!"
|
||||
else
|
||||
put "The remaining foods are: " & myFoods
|
||||
end if
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
The foods in my queue are: (grapes,orange,apricot)
|
||||
The first thing to eat is: grapes
|
||||
The remaining foods are: (orange,apricot)
|
||||
Loading…
Add table
Add a link
Reference in a new issue