{
"id": "fn-math-sin",
"dataComponent": "math",
"heading": {
"title": "sin",
"badges": [
"Math",
"JSMath"
]
},
"synopsis": "Returns the sine of a single numeric argument in radians",
"codeBlocks": [
"extend(\"math\")\n\nsput( math:sin(0) )\n# => 0\n\nsput( math:sin(3.14159/2) )\n# => ~1\n"
],
"notes": [
"One argument in radians. Returns float sin(x)."
]
}