Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
2a052ac96b | |||
af47c13e7e |
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
nimcache/
|
||||
tlangutils
|
||||
*.sw?
|
@ -26,4 +26,7 @@ proc sameContents*[T](a1, a2: openArray[T]): bool =
|
||||
if not a2.anyIt(a == it): return false
|
||||
return true
|
||||
|
||||
|
||||
template doWhile(a, b: untyped): untyped =
|
||||
b
|
||||
while a:
|
||||
b
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Package
|
||||
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
author = "Jonathan Bernard"
|
||||
description = "Language extensions (templates, macros) I commonly use."
|
||||
license = "MIT"
|
||||
|
Reference in New Issue
Block a user