Facebook
From Rizuide, 1 Year ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 77
  1. //video(https://youtube.com/shorts/MwcYNM8uSms?feature=share)
  2.  
  3. func c(a: Int) -> Int {
  4.     return a * a * a
  5. }
  6.  
  7. var cuboDe3 = c(a: 3)
  8. print(cuboDe3)