blob: 538528022c96ca2e1fdc08b0232688d73f5cdffd [file] [log] [blame]
Sergey Lyskoveae77442016-05-07 00:26:19 -04001#!/usr/bin/env python
2from __future__ import print_function
3
4from example import VectorInt, VectorA
5
6v_int = VectorInt(2)
7print( v_int.size() )
8
9print( bool(v_int) )
10
11v_int2 = VectorInt(2)
12print( v_int == v_int2 )
13
14v_int2[1] = 1
15print( v_int != v_int2 )
16
17v_int2.push_back(2)
18v_int2.push_back(3)
19print(v_int2)
20
21v_a = VectorA()