Created
December 17, 2019 01:17
-
-
Save aabeben/8d7842b6c98dba574f4689937098a4e5 to your computer and use it in GitHub Desktop.
Peubah-peubah
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Peubah-peubah | |
// Bahkan di dalam kode Dart yang bersifat tipe-aman | |
// Banyak peubah-peubah tidak memerlukan tipe yang tersurat, | |
// Terima-kasih pada penalaran tipe. | |
var name = 'Voyager I'; | |
var year = 1977; | |
var antennaDiameter = 3.7; | |
var flybyObjects = ['Jupiter','Saturn','Uranus','Neptune']; | |
var image = { | |
'tags':['saturn'], | |
'url':'//path/to/saturn.jpg' | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment