Skip to content

Instantly share code, notes, and snippets.

@jcollins-g
Forked from devoncarew/main.dart
Last active October 19, 2018 17:50
Show Gist options
  • Save jcollins-g/215ba63265350c02dfbd586dfd30b8c3 to your computer and use it in GitHub Desktop.
Save jcollins-g/215ba63265350c02dfbd586dfd30b8c3 to your computer and use it in GitHub Desktop.
helloworld
// Copyright 2015 the Dart project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file.
void main() {
for (var i = 0; i < 4; i++) {
print('hello $i');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment