mirror of
https://github.com/corda/corda.git
synced 2025-06-22 17:09:00 +00:00
sketch of Compiler.compileNative() and ifnull instruction implementation
This commit is contained in:
@ -20,9 +20,10 @@ public class Instructions {
|
||||
int c = a + b;
|
||||
|
||||
Instructions i = new Instructions();
|
||||
i.foo("hello");
|
||||
i.bar("hello");
|
||||
baz("hello");
|
||||
String s = "hello";
|
||||
i.foo(s);
|
||||
i.bar(s);
|
||||
baz(s);
|
||||
|
||||
int d = alpha;
|
||||
beta = 42;
|
||||
|
Reference in New Issue
Block a user