aboutsummaryrefslogtreecommitdiffstats
path: root/x.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-02-27 11:32:58 +0200
committerArnold D. Robbins <arnold@skeeve.com>2015-02-27 11:32:58 +0200
commit9bd02dc1cc61e195374d3bf83febb724fb08d739 (patch)
tree6bf791dda3e32f22b9b3d2d2c12deea9865a59e8 /x.awk
parent06ff159e6744b18a3c15d95f9100b050cd169269 (diff)
downloadegawk-9bd02dc1cc61e195374d3bf83febb724fb08d739.tar.gz
egawk-9bd02dc1cc61e195374d3bf83febb724fb08d739.tar.bz2
egawk-9bd02dc1cc61e195374d3bf83febb724fb08d739.zip
First set of changes toward @/.../.
Diffstat (limited to 'x.awk')
-rw-r--r--x.awk9
1 files changed, 9 insertions, 0 deletions
diff --git a/x.awk b/x.awk
new file mode 100644
index 00000000..b654db7b
--- /dev/null
+++ b/x.awk
@@ -0,0 +1,9 @@
+BEGIN {
+ a = 5 ; print typeof(a)
+ print typeof(b)
+ print typeof(b)
+ c = "foo" ; print typeof(c)
+ d[1] = 1 ; print typeof(d), typeof(d[1])
+ e = @/foo/ ; print typeof(e)
+ print typeof(@/bar/)
+}