Skip to content

Instantly share code, notes, and snippets.

@qnighy
Created March 16, 2009 14:38
Show Gist options
  • Save qnighy/79906 to your computer and use it in GitHub Desktop.
Save qnighy/79906 to your computer and use it in GitHub Desktop.
module test030;
import tango.io.Stdout: Stdout;
void main( ){
int value = 100;
if( value == 100 ){
Stdout( "VALUE is 100." )( );
}
if( value != 100 ){
Stdout( "VALUE is not 100." )( );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment