﻿<?xml version="1.0" encoding="utf-8"?>
<snippet name = "Area of Sphere" description = "Calculates the surface area of a sphere given the radius." preview="code" type="block">
<insertText location="beforeSelection">
<![CDATA[function areaOfSphere(radius) { return 4 * Math.PI * (Math.pow(radius, 2)); }
]]>
</insertText>
<insertText location="afterSelection"><![CDATA[]]>
</insertText>
</snippet>
