All Downloads are FREE. Search and download functionalities are using the official Maven repository.

samples.expressions.equal-object.pec Maven / Gradle / Ivy

The newest version!
define main as method doing:
    a = 3
    b = a
    c = 3
    printLine "a is b -> " + (a is b)
    printLine "a is c -> " + (a is c)
    printLine "a is not b -> " + (a is not b)
    printLine "a is not c -> " + (a is not c)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy