You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
4. Beri nama bagi tuples agar tidak membinggungkan.
//WRONGfunc whatever()->(Int,Int){return(4,4)}letthing=whatever()print(thing.0)//RIGHTfunc whatever()->(x:Int, y:Int){return(x:4, y:4)}// THIS IS ALSO OKAYfunc whatever2()->(x:Int, y:Int){letx=4lety=4return(x, y)}letcoord=whatever()
coord.x
coord.y
5. Beri colon setelah identifier, dilanjutkan oleh spasi.