Dim speed as string = " "
dim message as string = " "
console.writeline("Fictional Hurricane Maker")
console.writeline("Tell me the name of your hurricane.")
name = console.readline()
console.writeline("Tell me the wind speed of the hurricane.")
speed = console.readline()
if "0" > Speed < "38" then
message = "This Tropical Depression hasn't earned a name yet."
elseif "39" > Speed < "78" then
message = "Tropical Storm " + name + " likes making things wet and windy."
message = "Hurricane " + name + " is the sort of Category 1 storm that debranches trees."
message = "Hurricane " + name + " the Category 2 storm is the enemy of roof tile."
message = "Hurricane " + name + " the Category 3 storm has been replanting trees."
message = "Hurricane " + name + " the Category 4 storm hates everyone and is determined to rehome them."
message = "Hurricane " + name + " is a Category 5 storm. Isn't that all you need to know?"
message = "ERROR: impossible wind speed"
console.writeline(message)