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