This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2020 by Joshua "Skrylar" Cearley, | |
# Available under the Mozilla Public License, version 2.0, | |
# https://www.mozilla.org/en-US/MPL/2.0/ | |
import macros | |
import strformat | |
import sugar | |
macro make_postbox*(name, body: untyped): untyped = | |
# validate body of our macro |
OlderNewer