mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
according to https://nim-lang.org/docs/nep1.html#introduction-spacing-and-whitespace-conventions, two spaces should be preferred in stdlib.
7 lines
126 B
Nim
7 lines
126 B
Nim
when defined(js):
|
|
import asyncjs
|
|
export asyncjs
|
|
else:
|
|
import asyncmacro, asyncfutures
|
|
export asyncmacro, asyncfutures
|