12 lines
202 B
Java
Raw Normal View History

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();
}
}