Difference between revisions of "User:Ashley Y"

From HaskellWiki
Jump to navigation Jump to search
m (Reverted edits by SkyeSanders (Talk); changed back to last version by SamB)
(12 intermediate revisions by 3 users not shown)
Line 2: Line 2:
   
 
I hereby license all my contributions to this wiki under the simple permissive license on [[HaskellWiki:Copyrights]]. —[[User:Ashley Y|Ashley Y]] 05:25, 14 January 2006 (UTC)
 
I hereby license all my contributions to this wiki under the simple permissive license on [[HaskellWiki:Copyrights]]. —[[User:Ashley Y|Ashley Y]] 05:25, 14 January 2006 (UTC)
  +
  +
I am one of [[Special:Listusers&group=sysop|the handful of admins]] on this wiki.
   
 
[http://haskell.org/ghc/dist/current/docs/libraries/ Current libraries]
 
[http://haskell.org/ghc/dist/current/docs/libraries/ Current libraries]
   
  +
[[HaskellWiki:Style test]]
__TOC__
 
   
  +
Haskell - the language of choice for people smarter than you.
== GeSHi Tests ==
 
   
  +
[[Special:CheckUser]]
=== C ===
 
   
 
__TOC__
<pre-c>
 
for (int a=0;a<3;a++)
 
printf ("%d\n",a);
 
</pre-c>
 
 
=== Haskell ===
 
 
<haskell>
 
{-
 
My program
 
-}
 
   
 
== Haskell wishes ==
import Prelude
 
   
  +
Add:
foo :: (Monad m) -> m (Int,Int)
 
  +
* Top-level <hask><-</hask>
foo = (x-2,x - 1) where
 
  +
* Kind declarations
x = 3
 
   
  +
Remove:
-- The main function
 
  +
* old-style <hask>deriving</hask> (newtype deriving is OK)
main :: IO ()
 
  +
* Typeable & Dynamic
main = do
 
  +
* Generics and all that "Scrap Your Boilerplate" nonsense
a <- foo
 
  +
* numeric defaulting
putStr ("And the answer is: " ++(show (fst a))++"\n")
 
  +
* n+k patterns
</haskell>
 
   
  +
== Compilers ==
Inline: <hask>import Prelude</hask>.
 
   
  +
[[AHC]] [[BHC]] [[CHC]] [[DHC]] [[EHC]]<br/>
Inline: <pre>pre</pre>.
 
  +
[[FHC]] [[GHC]] [[HHC]] [[IHC]] [[JHC]]<br/>
  +
[[KHC]] [[LHC]] [[MHC]] [[NHC]] [[OHC]]<br/>
  +
[[PHC]] [[QHC]] [[RHC]] [[SHC]] [[THC]]<br/>
  +
[[UHC]] [[VHC]] [[WHC]] [[XHC]] [[YHC]]<br/>
  +
[[ZHC]]

Revision as of 15:41, 9 September 2011

Ashley Yakeley

I hereby license all my contributions to this wiki under the simple permissive license on HaskellWiki:Copyrights. —Ashley Y 05:25, 14 January 2006 (UTC)

I am one of the handful of admins on this wiki.

Current libraries

HaskellWiki:Style test

Haskell - the language of choice for people smarter than you.

Special:CheckUser

Haskell wishes

Add:

  • Top-level <-
  • Kind declarations

Remove:

  • old-style deriving (newtype deriving is OK)
  • Typeable & Dynamic
  • Generics and all that "Scrap Your Boilerplate" nonsense
  • numeric defaulting
  • n+k patterns

Compilers

AHC BHC CHC DHC EHC
FHC GHC HHC IHC JHC
KHC LHC MHC NHC OHC
PHC QHC RHC SHC THC
UHC VHC WHC XHC YHC
ZHC