diff options
author | Ben Gamari <ben@smart-cactus.org> | 2015-12-25 11:03:11 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2015-12-25 11:03:11 +0100 |
commit | 0104ef892820383845b3dce44c46899fec2f04f0 (patch) | |
tree | 81eba131303296aeb5ef5c880504cab0932dcab2 /html-test/src/Math.hs | |
parent | 2d4680f12f8c9cd647049eb1e3e56531bd44e880 (diff) | |
parent | 3f50b955324bd4b42f88a421f0203bc46a3ccf64 (diff) |
Merge remote-tracking branch 'idontgetoutmuch/ghc-head' into ghc-head
Diffstat (limited to 'html-test/src/Math.hs')
-rw-r--r-- | html-test/src/Math.hs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/html-test/src/Math.hs b/html-test/src/Math.hs new file mode 100644 index 00000000..75bc513e --- /dev/null +++ b/html-test/src/Math.hs @@ -0,0 +1,14 @@ +-- | Math (display) for 'normalDensity' +-- +-- \[ +-- \int_{-\infty}^{\infty} e^{-x^2/2} = \sqrt{2\pi} +-- \] +-- +-- \(\int_{-\infty}^{\infty} e^{-x^2/2} = \sqrt{2\pi}\) + +module Math where + +-- | Math (inline) for 'normalDensity' +-- \(\int_{-\infty}^{\infty} e^{-x^2/2} = \sqrt{2\pi}\) +-- \[\int_{-\infty}^{\infty} e^{-x^2/2} = \sqrt{2\pi}\] +f = 5 |