If you would like to upgrade to a newer long-term support version of Studio Pro, see Moving from Mendix Studio Pro 8 to 9.

Unary Expressions

Last modified: May 29, 2024

1 Introduction

An unary minus operator is used to convert a number from negative to positive or vice versa.

2 Example

The example below represents the negative value of ‘8’.

-8

When used with a variable that already has a negative value the result is positive.

For example, if $myVariable has the integer value “-7”:

-$myVariable

The output is:

7