mirror of
https://github.com/Open-Argon/argon-v3.git
synced 2025-12-06 00:46:07 +00:00
13 lines
336 B
Plaintext
13 lines
336 B
Plaintext
let x = do
|
|
let class = {}
|
|
class.f(path) = do
|
|
let nice(callback) = do
|
|
callback()
|
|
return class
|
|
let class = {nice:nice}
|
|
return class
|
|
class.cool(path, callback) = class.f(path).nice(callback)
|
|
return class
|
|
|
|
|
|
term.log(x.cool("to", ()=term.log("epic")).nice(()=term.log("test"))) |