summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/hjp5/examples/Listing0503.java
blob: 5a5db89c01029387172dd1eea7ba406c9873db6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Listing0503.java */

public class Listing0503
{
  public static void main(String[] args)
  {
    int a = 5;
    double x = 3.14;

    System.out.println("a = " + a);
    System.out.println("x = " + x);
  }
}