For Loop
- Nada program
- Test file
src/for_loop.py
from nada_dsl import *
def nada_main():
party_alice = Party(name="Alice")
start_int = SecretInteger(Input(name="start", party=party_alice))
list_length = 3
ascending_list = []
for i in range(list_length):
ascending_list.append(start_int + Integer(i))
# Return outputs using a for loop
outputs = []
for i in range(len(ascending_list)):
outputs.append(Output(ascending_list[i], "ascending_list_" + str(i), party_alice))
return outputs
tests/for_loop_test.yaml
---
program: for_loop
inputs:
start: 5
expected_outputs:
ascending_list_2: 7
ascending_list_0: 5
ascending_list_1: 6
Run and test the for_loop program
1. Open "Nada by Example"
2. Run the program with inputs
from the test file
nada run for_loop_test
3. Test the program with inputs
from the test file against the expected_outputs
from the test file
nada test for_loop_test