1function v = ver
2%GRB.VER Version information for GraphBLAS
3% v = GrB.ver returns a struct with the SuiteSparse:GraphBLAS version.
4% With no outputs, the version information is displayed.
5%
6% See also ver, version, GrB.version.
7
8% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved.
9% SPDX-License-Identifier: GPL-3.0-or-later
10
11if (nargout == 0)
12    gbver ;
13else
14    v = gbver ;
15end
16
17