Haskell/Haschool: Difference between revisions

From Noisebridge
Jump to navigation Jump to search
(Notes 1)
 
m (Actually explained the codes.)
Line 12: Line 12:
=== Notes @ 2009-05-13T04:06:13 ===
=== Notes @ 2009-05-13T04:06:13 ===


I have uploaded some source code that covers some the material we touched on
I have uploaded source code that covers some the material we touched on
in class.
in class.


http://github.com/jsnx/haschool/tree/master/2009-05-13T04:06:13
http://github.com/jsnx/haschool/tree/master/2009-05-13T04:06:13
* There is no <code>fromRational</code> in Haskell because there's <code>floor</code>, <code>ceiling</code> and <code>round</code>.
* The list definition I gave actually ''can'' be used to define infinite lists; I give an example.

Revision as of 04:10, 13 May 2009

On Tuesdays at 18:00 Pacific Time, we have a class on the Haskell programming language.



Instructor's Notes

Remarks from Jason Dusek. All times are in UTC.


Notes @ 2009-05-13T04:06:13

I have uploaded source code that covers some the material we touched on in class.

http://github.com/jsnx/haschool/tree/master/2009-05-13T04:06:13

  • There is no fromRational in Haskell because there's floor, ceiling and round.
  • The list definition I gave actually can be used to define infinite lists; I give an example.