diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-02-27 11:32:58 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-02-27 11:32:58 +0200 |
commit | 9bd02dc1cc61e195374d3bf83febb724fb08d739 (patch) | |
tree | 6bf791dda3e32f22b9b3d2d2c12deea9865a59e8 /x.awk | |
parent | 06ff159e6744b18a3c15d95f9100b050cd169269 (diff) | |
download | egawk-9bd02dc1cc61e195374d3bf83febb724fb08d739.tar.gz egawk-9bd02dc1cc61e195374d3bf83febb724fb08d739.tar.bz2 egawk-9bd02dc1cc61e195374d3bf83febb724fb08d739.zip |
First set of changes toward @/.../.
Diffstat (limited to 'x.awk')
-rw-r--r-- | x.awk | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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/) +} |