Imported Upstream version 1.4.17
[platform/upstream/m4.git] / checks / 030.define
1 dnl @ ../doc/m4.texi:1866: Origin of test
2 dnl @ expected status: 0
3 dnl @ extra options: 
4 dnl @ Copyright (C) 2006, 2007, 2008, 2009 Free Software
5 dnl @ Foundation, Inc.
6 dnl @ This file is free software; the Free Software Foundation
7 dnl @ gives unlimited permission to copy and/or distribute it
8 dnl @ with or without modifications, as long as this notice
9 dnl @ is preserved.
10 define(`array', `defn(format(``array[%d]'', `$1'))')
11 dnl @result{}
12 define(`array_set', `define(format(``array[%d]'', `$1'), `$2')')
13 dnl @result{}
14 array_set(`4', `array element no. 4')
15 dnl @result{}
16 array_set(`17', `array element no. 17')
17 dnl @result{}
18 array(`4')
19 dnl @result{}array element no. 4
20 array(eval(`10 + 7'))
21 dnl @result{}array element no. 17