6 lines
186 B
Nim
6 lines
186 B
Nim
when defined windows:
|
|
echo "Call some Windows specific functions here"
|
|
elif defined linux:
|
|
echo "Call some Linux specific functions here"
|
|
else:
|
|
echo "Code for the other platforms"
|