vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame^] | 1 | drop dataverse test if exists; |
2 | create dataverse test; | ||||
3 | use dataverse test; | ||||
4 | |||||
5 | write output to nc1:"/tmp/inline_funs.adm"; | ||||
6 | |||||
7 | declare function f1() { 1 + f2() } | ||||
8 | |||||
9 | declare function f2() { 2 + f3() + f3() + f3() + f4() } | ||||
10 | |||||
11 | declare function f3() { 0 - 1 } | ||||
12 | |||||
13 | declare function f4() { 1001 } | ||||
14 | |||||
15 | f1() |