diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-04-13 19:47:12 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-04-13 19:47:12 -0600 |
commit | 9f344f33b0fbc948815511f60296ce6804bd9c02 (patch) | |
tree | 44a10733d8cd58c72e622d406b7ea69d3e69c8b6 /boil/tests/ex32.java | |
parent | b0ddefd7e9a05905668bcef7110c623883e05c86 (diff) |
Complete MessageSend
Diffstat (limited to 'boil/tests/ex32.java')
-rw-r--r-- | boil/tests/ex32.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boil/tests/ex32.java b/boil/tests/ex32.java index af4dcd7..2527e04 100644 --- a/boil/tests/ex32.java +++ b/boil/tests/ex32.java @@ -2,12 +2,12 @@ class ex32 { public static void main(String[] a) { A a ; a = new A() ; - System.out.println(a.foo(12 + 13)) ; + System.out.println(a.foo(12, 14, 15, 12 + 23)) ; } } class A { - public int foo(int a) { + public int foo(int a, int b, int c, int d) { return 22 ; } } |