Initial commit with ?: and ?.

This commit is contained in:
Jonathan Bernard 2016-10-07 20:11:53 -05:00
commit fcb1e36e6c
2 changed files with 30 additions and 0 deletions

19
langutils.nim Normal file
View File

@ -0,0 +1,19 @@
template `?:`*(a, b: string): string =
if len(a) > 0: a else: b
template `?:`*(a: object, b: string): string =
if a: $a else: b
template `?:`*(a: ref, b): auto =
if a != nil: a else: b
template `?:`*(a, b: object): object =
if a: a else: b
template `?:`*(a, b): auto =
if a: a else: b
template `?.`*(a: ref, b: untyped): auto =
if a != nil: a.b else: nil

11
langutils.nimble Normal file
View File

@ -0,0 +1,11 @@
# Package
version = "0.1.0"
author = "Jonathan Bernard"
description = "Language extensions (templates, macros) I commonly use."
license = "MIT"
# Dependencies
requires "nim >= 0.15.0"