Skip to content

Instantly share code, notes, and snippets.

View felipenoris's full-sized avatar
💭
burnt

Felipe Noronha felipenoris

💭
burnt
  • Rio de Janeiro / Brazil
View GitHub Profile
using Base.Test
@enum ECompoundingType EContinuous=1 ESimple=2 EExponential=3
abstract TCompoundType
type TContinuous <: TCompoundType end
type TSimple <: TCompoundType end
type TExponential <: TCompoundType end