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

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

There is a newer version: 0.0.74
Show newest version
define main as method doing:
    t = "This is a text"
    c = 'h'
    f = "is"
    a = "hb"
    s = <'h', 'b'>
    printLine "c in t -> " + (c in t)
    printLine "f not in t -> " + (f not in t)
    printLine "a in t -> " + (a in t)
    printLine "t has f -> " + (t has f)
    printLine "t has any a -> " + (t has any a)
    printLine "t has all s -> " + (t has all s)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy