Skip to content

Commit d61bc52

Browse files
authored
Added a small calculation to the read_value program (#461)
1 parent 523dfca commit d61bc52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/learn/quickstart/variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ program read_value
111111
print *, 'Please enter your age: '
112112
read(*,*) age
113113
114-
print *, 'Your age is: ', age
114+
print *, 'In ten years, your age will be ', age + 10
115115
116116
end program read_value
117117
```

0 commit comments

Comments
 (0)