view graal/com.oracle.truffle.sl.test/tests/Null.sl @ 21386:010d3e1099c3

Allow snippets that do not have a return value
author Christian Wimmer <christian.wimmer@oracle.com>
date Thu, 14 May 2015 16:10:39 -0700
parents b16ec83edc73
children
line wrap: on
line source

/* The easiest way to generate null: a function without a return statement implicitly returns null. */
function null() {
}

function main() {  
  println(null());  
  println(null() == null());  
  println(null() != null());  
  println(null() == 42);  
  println(null() != 42);  
  println(null() == "42");  
  println(null() != "42");  
}