11 lines
243 B
Plaintext
Executable File
11 lines
243 B
Plaintext
Executable File
oracle ContractExample {
|
|
function onCreate() {
|
|
Global.owner = requester;
|
|
}
|
|
export function callHello(arg) {
|
|
return Hello.call()+requester;
|
|
}
|
|
export function getOwner() {
|
|
return Global.owner;
|
|
}
|
|
} |