1
0
mirror of https://github.com/fluencelabs/aqua-playground synced 2025-04-05 06:01:20 +00:00

12 lines
300 B
Plaintext
Raw Normal View History

2021-08-31 12:19:36 +03:00
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