((section 2 "Outdated egg!" (p "This is an egg for CHICKEN 4, the unsupported old release.  You're almost certainly looking for " (int-link "/eggref/5/type-stubs" "the CHICKEN 5 version of this egg") ", if it exists.") (p "If it does not exist, there may be equivalent functionality provided by another egg; have a look at the " (link "https://wiki.call-cc.org/chicken-projects/egg-index-5.html" "egg index") ". Otherwise, please consider porting this egg to the current version of CHICKEN.")) (section 2 "type-stubs" (p "This extension provides a module which exports stubs for Chicken's " (int-link "/man/4/Types" "type syntax") " when used with Chicken versions below 4.7.5 which is the version this syntax was introduced with. With Chicken versions >= 4.7.5 it doesn't export anything. This allows code to be type annotated and still be executed and compiled with older Chicken versions.") (section 3 "Constraints" (p "In order to be fully compatible with older Chicken versions it is required to always provide an " (tt "else") " branch in the " (tt "compiler-typecase") " form. This is because pre-typed Chickens have to always use the " (tt "else") " branch even when compiling code.")) (section 3 "Example" (highlight scheme "(module my-typed-module\n\n(doubled-number->string)\n\n(import chicken scheme type-stubs)\n\n(: doubled-number->string (number -> string))\n(define (doubled-number->string n)\n  (number->string (* n n)))\n\n)")) (section 3 "About this egg" (section 4 "Source" (p "The " (link "https://bitbucket.org/DerGuteMoritz/type-stubs" "source code is hosted at Bitbucket") ". Feel free to fork it and send pull requests there.")) (section 4 "Author" (p (int-link "/users/moritz-heidkamp" "Moritz Heidkamp"))) (section 4 "Version history" (dl (dt "0.0.1") (dd "Initial release"))) (section 4 "License" (pre " Copyright (c) 2013, Moritz Heidkamp\n All rights reserved.\n \n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n \n Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n \n Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n \n Neither the name of the author nor the names of its contributors may\n be used to endorse or promote products derived from this software\n without specific prior written permission.\n \n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\n FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\n COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\n STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\n OF THE POSSIBILITY OF SUCH DAMAGE.")))))