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
/
OpMul
/
OpMul.cxx
blob: c8eb01659ef4e122a53dbf1115eeec2acfdd62b8 (
plain
)
1
2
3
4
5
6
namespace
mathfunctions
{
double
OpMul
(
double
a
,
double
b
)
{
return
a
*
b
;
}
}