Skip to content

Instantly share code, notes, and snippets.

View zoetrope's full-sized avatar
😴

Akihiro Ikezoe zoetrope

😴
View GitHub Profile
@zoetrope
zoetrope / ast.fs
Created December 26, 2011 14:59
FParsecによるCORBA IDLパーサ
module idl.ast
open System
open FParsec.Primitives
open FParsec.CharParsers
open FParsec.Error
type ConstExpr =
| Xor of ConstExpr * ConstExpr
| Or of ConstExpr * ConstExpr