use std.codec use std.parse use std.time use helpers use types pub fn main(world: World) -> Void raises { let utf8_ok: Bool = std.codec.utf8Valid("abcd") let digits: usize = std.parse.scanDigits("123abc") let duration: Duration = std.time.add(std.time.ms(5), std.time.seconds(1)) if digits == 3 && utf8_ok && std.time.asMsFloor(duration) > 0 { check world.out.write("systems package\n") } cleanup() }