TABLE OF CONTENTS
::pwtk::input::namelist.affix
SYNOPSIS
proc ::pwtk::input::namelist.affix {name content {affix {}}} {
PURPOSE
Set or update the namelist followed with an optional nameless-card (aka affix)
ARGUMENTS
- name -- name of the namelist
- content -- content of the namelist in the syntax of fortran namelist (without namelist begin&end markers)
- affix -- an optional nameless-card (aka affix) that follows the namelist
SOURCE
global ::pwtk::input::namelist namelist $name $content if { $affix ne {} } { ::pwtk::input::card $name.affixCards [string trim $affix] } }