Skip to content

Instantly share code, notes, and snippets.

View wshcdr's full-sized avatar
🍊
I may be slow to respond.

wshcdr wshcdr

🍊
I may be slow to respond.
View GitHub Profile
@wshcdr
wshcdr / index.html
Created July 21, 2025 03:22
scroll-behavior 跳转到顶部
<div id="top">
<a href="#A">A</a>
<a href="#B">B</a>
<a href="#C">C</a>
</div>
<div id="A">
<a href="#B">B</a>
<a href="#C">C</a>
</div>
<div id="B">
@wshcdr
wshcdr / hs.md
Created March 20, 2014 15:24 — forked from jackywyz/hs.md

###haskell 基本类型,bool(True/False),list[],tuple(),int,Integer,Double,char'' ,string"",function(\x->x+1)

  1. wiki
@wshcdr
wshcdr / NnhpTests.hs
Created October 10, 2012 14:49 — forked from erickedji/NnhpTests.hs
[Tests] Ninety-nine haskell problems
import Test.QuickCheck
import Nnhp
{- For most of the problems, randomly choosen parameters
- are not a good test, as some obvious combinations are
- not likely to be generated, not matter how interresting
- they are to the test case at hand.
-}
-- P01