Skip to content

Instantly share code, notes, and snippets.

@wisnuwiry
Created November 26, 2019 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wisnuwiry/8b7972209b462400641eb9036b4cd89d to your computer and use it in GitHub Desktop.
Save wisnuwiry/8b7972209b462400641eb9036b4cd89d to your computer and use it in GitHub Desktop.
Contoh penerapan variabel pada Dart
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