2015-05-23 15:16:57 +03:00
|
|
|
package com.iluwatar;
|
|
|
|
|
|
|
|
public class App {
|
|
|
|
|
|
|
|
public static void main( String[] args ) {
|
2015-05-23 15:45:30 +03:00
|
|
|
Stew stew = new Stew(1, 2, 3, 4);
|
|
|
|
stew.mix();
|
|
|
|
stew.taste();
|
|
|
|
stew.mix();
|
2015-05-23 15:52:50 +03:00
|
|
|
|
|
|
|
ImmutableStew immutableStew = new ImmutableStew(2, 4, 3, 6);
|
|
|
|
immutableStew.mix();
|
2015-05-23 15:16:57 +03:00
|
|
|
}
|
|
|
|
}
|