Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. Module main()
  2. Declare String a = "1.0"
  3. Declare String b = "2.0"
  4. Declare String c = "3.0"
  5. Declare String d
  6.  
  7. Set a = b
  8. Set b = c
  9. Set c = a
  10. Set d = a + b + c
  11.  
  12. Display d
  13. End Module
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement