<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://fileformats.archiveteam.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://fileformats.archiveteam.org/index.php?action=history&amp;feed=atom&amp;title=Xcode_Playground</id>
		<title>Xcode Playground - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://fileformats.archiveteam.org/index.php?action=history&amp;feed=atom&amp;title=Xcode_Playground"/>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/index.php?title=Xcode_Playground&amp;action=history"/>
		<updated>2026-04-10T06:14:05Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.19.2</generator>

	<entry>
		<id>http://fileformats.archiveteam.org/index.php?title=Xcode_Playground&amp;diff=21024&amp;oldid=prev</id>
		<title>Dan Tobias at 04:07, 14 February 2015</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/index.php?title=Xcode_Playground&amp;diff=21024&amp;oldid=prev"/>
				<updated>2015-02-14T04:07:11Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 04:07, 14 February 2015&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 4:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;}}&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;}}&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;−&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;An '''Xcode Playground''' is a &amp;quot;temporary scratchpad or sandbox&amp;quot; mini-project under Apple's Xcode development environment for creating apps for OS X and iOS. It is actually a subdirectory (folder), in the manner of the OS X [[Bundle file (OS X)|bundle file]]&lt;del class=&quot;diffchange diffchange-inline&quot;&gt;)&lt;/del&gt;. It is used for experimenting with programming constructs in the [[Swift]] language, and was added to Xcode along with that language in 2014.&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;An '''Xcode Playground''' is a &amp;quot;temporary scratchpad or sandbox&amp;quot; mini-project under Apple's Xcode development environment for creating apps for OS X and iOS. It is actually a subdirectory (folder), in the manner of the OS X [[Bundle file (OS X)|bundle file]]. It is used for experimenting with programming constructs in the [[Swift]] language, and was added to Xcode along with that language in 2014.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Swift is a programming language with a smaller amount of required boilerplate code and mandatory complex structure than other languages (including [[Objective-C]], which was previously the primary language of OS X and iOS development), so that it is feasible to try single lines of program code one at a time, in an interpreter-style environment (as was typical in [[BASIC]] a long time ago, and is also the case with [[Python]] now). This is the function of an Xcode Playground, which works like a cross between such an interpreter and a full-screen program editor; you can see the outcome of program lines immediately, but can also go back and edit other lines further up the page (which will affect the outcome of subsequent lines as well).&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Swift is a programming language with a smaller amount of required boilerplate code and mandatory complex structure than other languages (including [[Objective-C]], which was previously the primary language of OS X and iOS development), so that it is feasible to try single lines of program code one at a time, in an interpreter-style environment (as was typical in [[BASIC]] a long time ago, and is also the case with [[Python]] now). This is the function of an Xcode Playground, which works like a cross between such an interpreter and a full-screen program editor; you can see the outcome of program lines immediately, but can also go back and edit other lines further up the page (which will affect the outcome of subsequent lines as well).&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Dan Tobias</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/index.php?title=Xcode_Playground&amp;diff=20534&amp;oldid=prev</id>
		<title>Dan Tobias: /* Contents of bundle */</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/index.php?title=Xcode_Playground&amp;diff=20534&amp;oldid=prev"/>
				<updated>2015-01-16T00:20:56Z</updated>
		
		<summary type="html">&lt;p&gt;‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;Contents of bundle&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
			&lt;tr valign='top'&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 00:20, 16 January 2015&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 13:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 13:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* '''contents.xcplayground''': An [[XML]] file showing the relationship and purpose of other files in the playground&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* '''contents.xcplayground''': An [[XML]] file showing the relationship and purpose of other files in the playground&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;−&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* '''section-1.swift''': The Swift program code that the user &lt;del class=&quot;diffchange diffchange-inline&quot;&gt;had &lt;/del&gt;typed in.&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* '''section-1.swift''': The Swift program code that the user &lt;ins class=&quot;diffchange diffchange-inline&quot;&gt;has &lt;/ins&gt;typed in.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* '''timeline.xctimeline''': Another [[XML]] file.&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;* '''timeline.xctimeline''': Another [[XML]] file.&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;&amp;#160;&lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Dan Tobias</name></author>	</entry>

	<entry>
		<id>http://fileformats.archiveteam.org/index.php?title=Xcode_Playground&amp;diff=20532&amp;oldid=prev</id>
		<title>Dan Tobias: Created page with &quot;{{FormatInfo |subcat=Development |extensions={{ext|playground}} }}  An '''Xcode Playground''' is a &quot;temporary scratchpad or sandbox&quot; mini-project under Apple's Xcode developme...&quot;</title>
		<link rel="alternate" type="text/html" href="http://fileformats.archiveteam.org/index.php?title=Xcode_Playground&amp;diff=20532&amp;oldid=prev"/>
				<updated>2015-01-16T00:18:46Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;{{FormatInfo |subcat=Development |extensions={{ext|playground}} }}  An &amp;#039;&amp;#039;&amp;#039;Xcode Playground&amp;#039;&amp;#039;&amp;#039; is a &amp;quot;temporary scratchpad or sandbox&amp;quot; mini-project under Apple&amp;#039;s Xcode developme...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{FormatInfo&lt;br /&gt;
|subcat=Development&lt;br /&gt;
|extensions={{ext|playground}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
An '''Xcode Playground''' is a &amp;quot;temporary scratchpad or sandbox&amp;quot; mini-project under Apple's Xcode development environment for creating apps for OS X and iOS. It is actually a subdirectory (folder), in the manner of the OS X [[Bundle file (OS X)|bundle file]]). It is used for experimenting with programming constructs in the [[Swift]] language, and was added to Xcode along with that language in 2014.&lt;br /&gt;
&lt;br /&gt;
Swift is a programming language with a smaller amount of required boilerplate code and mandatory complex structure than other languages (including [[Objective-C]], which was previously the primary language of OS X and iOS development), so that it is feasible to try single lines of program code one at a time, in an interpreter-style environment (as was typical in [[BASIC]] a long time ago, and is also the case with [[Python]] now). This is the function of an Xcode Playground, which works like a cross between such an interpreter and a full-screen program editor; you can see the outcome of program lines immediately, but can also go back and edit other lines further up the page (which will affect the outcome of subsequent lines as well).&lt;br /&gt;
&lt;br /&gt;
== Contents of bundle ==&lt;br /&gt;
&lt;br /&gt;
Typical contents are:&lt;br /&gt;
&lt;br /&gt;
* '''contents.xcplayground''': An [[XML]] file showing the relationship and purpose of other files in the playground&lt;br /&gt;
* '''section-1.swift''': The Swift program code that the user had typed in.&lt;br /&gt;
* '''timeline.xctimeline''': Another [[XML]] file.&lt;br /&gt;
&lt;br /&gt;
== Links and references ==&lt;br /&gt;
* [https://developer.apple.com/library/ios/recipes/xcode_help-source_editor/chapters/ExploringandEvaluatingSwiftCodeinaPlayground.html Exploring and Evaluating Swift Code in a Playground]&lt;br /&gt;
&lt;br /&gt;
[[Category:Macintosh]]&lt;br /&gt;
[[Category:Apple]]&lt;/div&gt;</summary>
		<author><name>Dan Tobias</name></author>	</entry>

	</feed>