<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
	<dict>
		<key>Name</key>
		<string>New Action</string>
		
		<key>Code</key>
		<string> </string>
		
		<key>Arguments</key>
		<array></array>
	</dict>

	<dict>
		<key>Name</key>
		<string>Set Variable</string>
		
		<key>Code</key>
		<string>set %$ to %$</string>
		
		<key>Arguments</key>
		<array>
			<string>Variable Name:</string>
			<string>Value:</string>
		</array>
	</dict>
	
	<dict>
		<key>Name</key>
		<string>Get Variable</string>
		
		<key>Code</key>
		<string>get x</string>
		
		<key>Arguments</key>
		<array></array>
	</dict>
	
	<dict>
		<key>Name</key>
		<string>Create Table</string>
		
		<key>Code</key>
		<string>create table called %$ with columns %$</string>
		
		<key>Arguments</key>
		<array>
			<string>Table Name:</string>
			<string>Columns Def:</string>
		</array>
	</dict>
	
	<dict>
		<key>Name</key>
		<string>Insert Data</string>
		
		<key>Code</key>
		<string>tell table %$ to insert data %$</string>
		
		<key>Arguments</key>
		<array>
			<string>Table Name:</string>
			<string>Data:</string>
		</array>
	</dict>
</array>
</plist>