fork download
  1. def name1 = ' \"Hello\" world'
  2. def name2 = 'Hello\
  3. testing.
  4. world'
  5.  
  6.  
  7. def test = "testing"
  8.  
  9. println test - "est"
  10.  
  11. if("hi $name2" == "hi Hello world")
  12. {
  13. println "equal"
  14. }
  15. else
  16. {
  17. println "not equal" + name1 + " " + name2
  18. }
Runtime error #stdin #stdout 0.61s 216256KB
stdin
Standard input is empty
stdout
Standard output is empty