• DoctypeDeclaration{http://etl.sf.net/etl/doctype/0.2.1}:
    • systemId: "calculator-basic-0_2_1.g.etl"
  • PrintStatement{http://etl.sf.net/samples/calculator}:
    • values:
      • StringLiteral{http://etl.sf.net/samples/calculator}:
        • value: "zeroes: "
      • NumberLiteral{http://etl.sf.net/samples/calculator}:
        • value: 24#0#
      • StringLiteral{http://etl.sf.net/samples/calculator}:
        • value: " "
      • NumberLiteral{http://etl.sf.net/samples/calculator}:
        • value: 0.0
  • PrintStatement{http://etl.sf.net/samples/calculator}:
    • values:
      • StringLiteral{http://etl.sf.net/samples/calculator}:
        • value: "ones: "
      • NumberLiteral{http://etl.sf.net/samples/calculator}:
        • value: 1
      • StringLiteral{http://etl.sf.net/samples/calculator}:
        • value: " "
      • NumberLiteral{http://etl.sf.net/samples/calculator}:
        • value: 1.0
      • StringLiteral{http://etl.sf.net/samples/calculator}:
        • value: " "
      • NumberLiteral{http://etl.sf.net/samples/calculator}:
        • value: 10E-1
  • PrintStatement{http://etl.sf.net/samples/calculator}:
    • values:
      • StringLiteral{http://etl.sf.net/samples/calculator}:
        • value: "halves: "
      • NumberLiteral{http://etl.sf.net/samples/calculator}:
        • value: 0.5
      • StringLiteral{http://etl.sf.net/samples/calculator}:
        • value: " "
      • NumberLiteral{http://etl.sf.net/samples/calculator}:
        • value: 5.0E-1
      • StringLiteral{http://etl.sf.net/samples/calculator}:
        • value: " "
      • NumberLiteral{http://etl.sf.net/samples/calculator}:
        • value: 2#0.001#e2
  • PrintStatement{http://etl.sf.net/samples/calculator}:
    • values:
      • StringLiteral{http://etl.sf.net/samples/calculator}:
        • value: "dozens: "
      • NumberLiteral{http://etl.sf.net/samples/calculator}:
        • value: 12#10#
      • StringLiteral{http://etl.sf.net/samples/calculator}:
        • value: " "
      • NumberLiteral{http://etl.sf.net/samples/calculator}:
        • value: 3#1_1_0#
      • StringLiteral{http://etl.sf.net/samples/calculator}:
        • value: " "
      • NumberLiteral{http://etl.sf.net/samples/calculator}:
        • value: 0.12e2
      • StringLiteral{http://etl.sf.net/samples/calculator}:
        • value: " "
      • NumberLiteral{http://etl.sf.net/samples/calculator}:
        • value: 36#C#
     1: doctype "calculator-basic-0_2_1.g.etl";
     2: print "zeroes: ", 24#0#, " ", 0.0; 
     3: print "ones: ", 1, " ", 1.0, " ", 10E-1; 
     4: print "halves: ", 0.5, " ", 5.0E-1, " ", 2#0.001#e2; 
     5: print "dozens: ", 12#10#, " ", 3#1_1_0#, " ", 0.12e2, " ", 36#C#;