diff options
author | Rob Savoye | 2010-11-25 12:24:25 -0700 |
---|---|---|
committer | Rob Savoye | 2010-11-25 12:24:25 -0700 |
commit | eb53ba5e8604bcd3e782d7b470c2214d3c24c1ed (patch) | |
tree | 3a1f2b5699f0620845844e63888f9ec331cb2a7e /gr-run-waveform | |
parent | a0ae40af9e59dc24a4c0c5ff9de69104ddb3526a (diff) | |
download | gnuradio-eb53ba5e8604bcd3e782d7b470c2214d3c24c1ed.tar.gz gnuradio-eb53ba5e8604bcd3e782d7b470c2214d3c24c1ed.tar.bz2 gnuradio-eb53ba5e8604bcd3e782d7b470c2214d3c24c1ed.zip |
hello world in scheme
Diffstat (limited to 'gr-run-waveform')
-rw-r--r-- | gr-run-waveform/hello.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gr-run-waveform/hello.scm b/gr-run-waveform/hello.scm new file mode 100644 index 000000000..f3bb5eac1 --- /dev/null +++ b/gr-run-waveform/hello.scm @@ -0,0 +1,4 @@ +(define hello-world + (lambda () + (display "Hello, World!") + (newline))) |