<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Reserved Words &#8211; Xojo Programming Blog</title>
	<atom:link href="https://blog.xojo.com/tag/reserved-words/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.xojo.com</link>
	<description>Blog about the Xojo programming language and IDE</description>
	<lastBuildDate>Mon, 23 Oct 2017 16:05:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Aren&#8217;t those Xojo keywords?</title>
		<link>https://blog.xojo.com/2017/10/24/arent-those-xojo-keywords/</link>
		
		<dc:creator><![CDATA[Norman Palardy]]></dc:creator>
		<pubDate>Tue, 24 Oct 2017 08:05:31 +0000</pubDate>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Reserved Words]]></category>
		<guid isPermaLink="false">https://blog.xojo.com/?p=3462</guid>

					<description><![CDATA[Many times we get bug reports or feature requests about issues with keywords not highlighting or being colorized in the code editor. But are those actually language "keywords" in Xojo?]]></description>
										<content:encoded><![CDATA[<p>Many times we get bug reports or feature requests about issues with keywords not highlighting or being colorized in the code editor. But are those words actually language &#8220;keywords&#8221; or reserved words in Xojo?</p>
<p>In reality none of the intrinsic types are reserved words. They&#8217;re just types in the global namespace. Xojo knows where a type name is required and it will only look for types in that context. The opposite holds true as well. In effect, the types are treated as if they live in their own namespace.</p>
<p><span id="more-3462"></span></p>
<p>What that means is code like this, while possibly confusing to you and I, is perfectly legal:</p>
<pre>Function String() As String
 Return "1"
 End Function

Sub Test()
 Dim string As String = String
 Print(string)
 End Sub

Test()
</pre>
<p>I wouldn&#8217;t necessarily encourage this style, but you can see why &#8220;the code editor isn&#8217;t highlighting these &#8220;keywords&#8221; is not wrong. Check the Developer Center for a full list of Xojo&#8217;s <a href="http://developer.xojo.com/reserved-words">Reserved Words</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
