dim hours, pay, total as decimal
console.writeline("how many hours have you worked this week")
console.writeline("how much is your hourly pay")
if hours >= 60 or hours <= 0 then
console.writeline("error")
total = hours * (pay * 1.5)
console.writeline("you have earnt £" & total)
console.writeline("you have earnt £" & total)