Created
November 26, 2019 14:00
-
-
Save wisnuwiry/8b7972209b462400641eb9036b4cd89d to your computer and use it in GitHub Desktop.
Contoh penerapan variabel pada Dart
This file contains 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
void main() { | |
var p = 12; | |
print(p); | |
var s = "Hello"; | |
print(s); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment