|
Scala example source code file (phonebook.scala)
The Scala phonebook.scala source codepackage phonebook ; object phonebook { val labPhoneBook = <phonebook> <descr> This is the <b>phonebook of the <a href="http://acme.org">ACME corporation. </descr> <entry> <name>Burak <phone where="work"> +41 21 693 68 67 <phone where="mobile">+41 79 602 23 23 </entry> </phonebook>; Console.println( labPhoneBook ); // XML is immutable - adding an element import scala.xml.{ Node, Text }; def add( phonebook:Node, newEntry:Node ):Node = phonebook match { case <phonebook>{ ch @ _* } => <phonebook>{ ch }{ newEntry } } val pb2 = add( labPhoneBook, <entry> <name>Kim <phone where="work"> +41 21 111 11 11 </entry> ); def main(args:Array[String]) = Console.println( pb2 ); } Other Scala examples (source code examples)Here is a short list of links related to this Scala phonebook.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.