Skip to content

Instantly share code, notes, and snippets.

public class Test{
public static void main(String[] args){
//System.out.println(null);
//System.out.println(null > 10);
//System.out.println(null < 10);
System.out.println(null == null);
System.out.println(10 == 10);
}
}
Welcome to psql 8.3.7, the PostgreSQL interactive terminal.
Type: \copyright for distribution terms
\h for help with SQL commands
\? for help with psql commands
\g or terminate with semicolon to execute query
\q to quit
test_psql=> select null as data;
data
//#Javascript
>>> null
null
>>> null == 10
false
>>> null > 10
false
>>> null < 10
true
>>> null == null
In [1]: None
In [2]: None > 10
Out[2]: False
In [3]: None < 10
Out[3]: True
In [4]: None == None
Out[4]: True
conf.py
abc.txt
def.txt
makefile
_templates\
page.html
# Put your local settings here. This will override corresponding settings in settings.py.
# PLEASE DO NOT CHECK IN THIS FILE.
ADMINS = (
('Shabda', 'shabda@uswaretech.com'),
)