summaryrefslogblamecommitdiff
path: root/test/files/jvm/xmlmore.scala
blob: c6322bc1ef713e4e7d6c598b11a90762019237aa (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                                   







                                                      
                                                        
 
                                                           



                                                              
                       

                            
object myBreak extends scala.xml.Unparsed("<br />")

object Test extends Application {
  val com = <!-- thissa comment -->
  val pi  = <?this is a pi foo bar = && {{ ?>
  val crz = <![CDATA[
 "Come, come again, whoever you are, come!
Heathen, fire worshipper or idolatrous, come!
Come even if you broke your penitence a hundred times,
Ours is the portal of hope, come as you are."
                              Mevlana Celaleddin Rumi]]>

  val nazim = <foo>{myBreak}</foo> // shows use of unparsed

  Console println com
  Console println pi
  Console println crz // this guy will escaped, and rightly so
  Console println nazim
  Console println "End Test"
}