Created
October 4, 2023 16:22
-
-
Save run-dlang/ab99d378544a84903a56565f3d4a7395 to your computer and use it in GitHub Desktop.
Code shared from run.dlang.io.
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
import std; | |
void main() | |
{ | |
int value = 05; | |
writeln("Is between: ", | |
(value >= 10) && (value < 20)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment