Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Jackson committed Jun 14, 2011
1 parent f8c4bdb commit 1a4d025
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.org
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@


* Toy Language
#+BEGIN_SRC c
func cos(Double) Double;
func printf(...) Integer;

func bar() Integer {
printf("foo");
return 3;
}

func main() Integer {
printf("hello %d", 3);
printf("bar ");
bar();
return 0;
}
#+END_SRC

* Screenshot

[[https://github.com/jasonjckn/llvm-clojure-bindings/raw/master/pic.png]]

0 comments on commit 1a4d025

Please sign in to comment.