On this page:
3.1 Healer Friends 001 Kata
3.2 Healer Friends 002 Kata
3.3 Healer Friends 003 Kata
3.4 Healer Friends 004 Kata
3.5 Healer Friends 005 Kata

3 Friends Katas

3.1 Healer Friends 001 Kata

read
Code a game with a llama eating apples, and with llama friends.
code
#lang healer-animal-friends
 
(start llama (apple) (llama))
In Ratchet:
image

3.2 Healer Friends 002 Kata

read
Code a game with a cow eating bananas and mushrooms, and with cow and rabbit friends.
code
#lang healer-animal-friends
 
(start cow (banana mushroom) (cow rabbit))
In Ratchet:
image

3.3 Healer Friends 003 Kata

read
Code a game with a red rabbit eating kiwis and apples, and with pig friends.
code
#lang healer-animal-friends
 
(start (rabbit red) (kiwi apple) (pig))
In Ratchet:
image

3.4 Healer Friends 004 Kata

read
Code a game with an orange pig eating bananas and mushrooms, and with llama and [choose-your-own-sprite] friends.
code
#lang healer-animal-friends
 
(start
  (pig orange)
  (banana mushroom)
  (llama rand))
In Ratchet:
image

3.5 Healer Friends 005 Kata

read
Code a game with a yellow apple eating kiwis and bananas, and with cow, pig, and rabbit friends.
code
#lang healer-animal-friends
 
(start
  (apple yellow)
  (kiwi banana)
  (cow pig rabbit))
In Ratchet:
image