but what does it mean in terms of computer jargon?
Essentially the same thing. Example:
x = 5;
The above is the syntax (representation). The meaning (i.e. the semantics) of this term is to assign the value 5 to a symbol (variable, whatever) called x
. Different languages offer different syntaxes to provide the same semantics. For example, the above assignment would be written as
x := 5;
in Pascal, and as
x <- 5
in several other languages. In all cases, the meaning is essentially the same. But sometimes, the same syntaxes can also have different meanings, depending on the language and/or context. VB for example redefines the equals operator to mean two different things. First, an assignment, just as above.
Secondly, in the following code sippet, rather than assigning, it takes the meaning of comparing two values:
If x = 5 Then Console.WriteLine("x is 5")