James Steiner wrote:
put format("put \"0\" before xyz") into line 8


Wouldn't

    put ( "put " & quote & "0" & quote & " before xyz" ) into line 8

also work, without having to resort to using a fancy function like format??

Or my favorite fancy function, q:

  function q s
     return quote & s & quote
  end q


put q(0) before yz


-- Richard Gaskin Fourth World Media Corporation ___________________________________________________________ [EMAIL PROTECTED] http://www.FourthWorld.com _______________________________________________ use-revolution mailing list [email protected] http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to