Based on your information I thought I could input a string and have it printed on the screen. Just like the old "Hello World" program but with the text inputted by a user. The problem is while it seemingly inputs text, there is no output.
Here's what I wrote
Quote:
var noun;
{
prompt("Please Enter a Noun.", noun);
write("The Fox jumped over the ",noun);
}
|
I tried assigning the variable "noun" with the prompt value by using this line
Quote:
noun = prompt("Please enter a noun.");
|
But that doesn't work either. hmmmm