Skip to content

Commit

Permalink
helloworld incomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
bstarynk committed Jan 19, 2012
1 parent 6898b56 commit 574ece9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ex01/Makefile
@@ -0,0 +1,11 @@
## file ex01/Makefile
## in the public domain
CC=gcc
RM=rm -vf
.PHONY: all clean

all:
$(CC)

clean:
$(RM) *.o
1 change: 1 addition & 0 deletions ex01/SUMMARY
@@ -0,0 +1 @@
ex01/ - hello world in MELT [Public Domain]
8 changes: 8 additions & 0 deletions ex01/ex01m-helloworld.melt
@@ -0,0 +1,8 @@
;; -*- Lisp -*-

;; comment appearing in the generated C file.
(comment "file ex01-helloworld.melt is in the public domain")

(code_chunk hellochk
#{ printf("Hello by $HELLOCHK from %s at %d\n", __FILE__, __LINE__); }#
)

0 comments on commit 574ece9

Please sign in to comment.