~ubuntu-branches/ubuntu/wily/picolisp/wily-proposed

« back to all changes in this revision

Viewing changes to test/src/io.l

  • Committer: Package Import Robot
  • Author(s): Kan-Ru Chen (陳侃如)
  • Date: 2015-02-06 00:19:20 UTC
  • mfrom: (1.2.2)
  • Revision ID: package-import@ubuntu.com-20150206001920-ug3fakmqpq9apw5o
Tags: 3.1.9.7-1
* New upstream release
* Build *.jar from source
* Do not install doc/{db,utf8} as requested by upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# 26sep13abu
 
1
# 27jan15abu
2
2
# (c) Software Lab. Alexander Burger
3
3
 
4
4
### path ###
138
138
 
139
139
### pipe ###
140
140
(test 123 (pipe (println 123) (read)))
 
141
(test "ABC DEF GHI"
 
142
   (pipe
 
143
      (out '(tr "[a-z]" "[A-Z]") (prinl "abc def ghi"))
 
144
      (line T) ) )
141
145
 
142
146
 
143
147
### open close ###