REM Test Knowledge Base (weather.kb) RULE [Is it going to rain?] If [precipitation] = "expected" and [the expected temperature] > 32 Then [the recommendation] = "wear a raincoat" RULE [Is it going to snow?] If [precipitation] = "expected" and [the expected temperature] < 33 Then [the recommendation] = "wear your boots" @ 95 PROMPT [precipitation] MultChoice CF "According to the weather forecast, precipitation is:" "expected" "not expected" PROMPT [the expected temperature] Numeric CF "The expected daytime temperature (degrees Fahrenheit) is:" "-30" "120" GOAL [the recommendation] DEFAULT [the recommendation] = "wear whatever you want to" @ 90