func test_assert(x: range[5..int.high]) =
      assert x > 5, "x must be > 5"
      debugEcho "success"
    
    var a = 6
    
    test_assert(a)
    
    Run

But we are going OT here, so I stop here. 

Reply via email to