Explanation

As one of the first activities we will do at this Dagstuhl, we want to informally highlight some of the challenges in designing error messages. Thus, we are providing an ice breaker activity, which works by giving everyone a set of source code, written in a programming language you may not know. Your job is to write the message for the error. There are a few rules we would ask you to follow:

Note that all samples are either real code submitted by a user or slightly modified. They may come from any known version of the language in question. We are intentionally omitting any information about the users that submitted the code (and they are not the same people). Assume you have no information on age, gender, ethnicity, disability status, or anything else. As such, you cannot determine ahead of time if you are giving this message to a child with no experience, an experienced professional, a person with a native language other than English, a college student with dyslexia, or really anything else. All you get to decide is what the error message is. All message submissions should go in the following form:

Error Message Submission Form

There are three parts to this exercise:

Code Sample 1

integer value = 10
outputvalue

Code Sample 2

integer value = 10
Output value

Code Sample 3

repeat 10 times

text= name input("Please enter your first name:")
output "Hello world!", Name
end

Code Sample 4

number test = 10.4
integer test = 15
repeat until test > 50 times
    test = test + 1
end

Code Sample 5

use Libraries.Game.Game
// INSERT YOUR " USE " STATEMENTS HERE

class Main is Game
    action Main
        StartGame ()
    end

    action CreateGame
    // INSERT YOUR CODE HERE
    
    end
end

use Libraries.Sound.Audio
Audio.clickSound
clickSound:Load("media/astro/click.wav")
clickSound:Play()