Skip to content

Instantly share code, notes, and snippets.

View oyakata's full-sized avatar

Imagawa Yakata (oyakata) oyakata

  • Sumpu@Suruga
  • Japan/ the Age of Provincial Wars
View GitHub Profile
@knzm
knzm / gist:5185369
Last active December 30, 2020 14:34

Python パッケージングのこれまでとこれから

第1世代: distutils

$ python setup.py build
@tomykaira
tomykaira / shape.lhs
Created July 24, 2011 08:02
#start_haskell サンプルプログラム1
Shape: データ名
Rectangle: constructor
先頭がおおもじなのは型クラス名です
> data Shape = Rectangle Float Float
> | Square Float
> | Circle Float
> | Triangle Float Float
これについての関数を定義