Console.WriteLine("Beep beep boop boop. Let's calculate together!")
Console.WriteLine("To calculate, enter first number, press enter, enter a symbol, press enter and enter second number.")
Console.WriteLine("Symbols you can use are +, -, *, /, ^")
Console.WriteLine("You may now begin")
Dim first As Decimal = Console.ReadLine()
Dim symbol = Console.ReadLine()
Dim second As Decimal = Console.ReadLine()
answer = add(first, second)
answer = subtract(first, second)
answer = multiply(first, second)
answer = divide(first, second)
answer = power(first, second)
Console.WriteLine("Your answer is " & answer)
Function add(ByVal first As Decimal, ByVal second As Decimal) As Decimal
Function subtract(ByVal first As Decimal, ByVal second As Decimal)
Function multiply(ByVal first As Decimal, ByVal second As Decimal)
Function divide(ByVal first As Decimal, ByVal second As Decimal)
Function power(ByVal first As Decimal, ByVal second As Decimal)