mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-04-05 06:01:20 +00:00
12 lines
300 B
Plaintext
12 lines
300 B
Plaintext
|
import "imports_exports/subImport.aqua"
|
||
|
|
||
|
service ConcatSubs("concat_subs"):
|
||
|
get_some(s: SomeString, sr: SomeResult) -> SomeResult
|
||
|
|
||
|
func subImportUsage(s: SomeString) -> SomeResult:
|
||
|
sr1 <- SubService.sub(s)
|
||
|
sr2 <- subImport()
|
||
|
result <- ConcatSubs.get_some(sr1.one, sr2)
|
||
|
<- result
|
||
|
|