index
:
CMake.git
master
release
CMake is a cross-platform, open-source build system generator.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Help
/
guide
/
tutorial
/
Step6
/
MathFunctions
/
MathExtensions
/
OpSub
/
OpSub.cxx
blob: b7b35da3dd2d9fb267b29dd5b844f5696c048fa4 (
plain
)
1
2
3
4
5
6
namespace
mathfunctions
{
double
OpSub
(
double
a
,
double
b
)
{
return
a
-
b
;
}
}