Skip to content

Instantly share code, notes, and snippets.

@rudiedirkx
Last active August 29, 2015 14:22
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 rudiedirkx/3a655f485d223278efc5 to your computer and use it in GitHub Desktop.
Save rudiedirkx/3a655f485d223278efc5 to your computer and use it in GitHub Desktop.
Android created Gist
<?php
// List of Item objects
$items = [new Item];
// List of strings
$strings = ["Oele"];
// List of Item objects
ArrayList<Item> items = new ArrayList<Item>();
items.add(new Item());
List of strings
String[] strings = new String[] { "Oele" };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment