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

samples.expressions.contain-tuple.pec Maven / Gradle / Ivy

There is a newer version: 0.0.74
Show newest version
define main as method doing:
    t = (2, "John", 6.5)
    a = "John"
    b = (3, "John", 14)
    printLine "a in t -> " + (a in t)
    printLine "t has any b -> " + (t has any b)
    printLine "t has all b -> " + (t has all b)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy