Redefine denominator
Included page: TestWithVariable (edit)
To test This page three variables must be defined on the parent page: "numerator", "denominator" and "quotient"
Define variables on this sub page. They can be used on the main page
print quotient = 10.0
print quotient2 = 10.0
print quotient4 = 10.0
eg.Division | |||
# Test Description | numerator | denominator | quotient? |
Expected result is calculated with expression | 20 | 2 | 10.0 |
Expected result is in variable | 20 | 2 | 10.0 |
Store result in a symbol | 20 | 2 | $result= |
Use symbol | $result | 1 | 10.0 |
printing a variable is possible: result = 77.0
printing a symbol is not possible: result = $result
Redefine denominator
Included page: TestWithVariable (edit)
To test This page three variables must be defined on the parent page: "numerator", "denominator" and "quotient"
Define variables on this sub page. They can be used on the main page
print quotient = 8.0
print quotient2 = 8.0
print quotient4 = 8.0
eg.Division | |||
# Test Description | numerator | denominator | quotient? |
Expected result is calculated with expression | 20 | 2.5 | 8.0 |
Expected result is in variable | 20 | 2.5 | 8.0 |
Store result in a symbol | 20 | 2.5 | $result= |
Use symbol | $result | 1 | 8.0 |
printing a variable is possible: result = 77.0
printing a symbol is not possible: result = $result