This website works better with JavaScript.
Home
Help
Sign In
tmeissner
/
build_your_own_lisp
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Activity
(Somewhat adapted) code and solutions from the book "Build Your Own Lisp"
http://www.buildyourownlisp.com
lisp
c
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8
Commits
1
Branch
384 KiB
Tree:
7affd2b284
master
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from '7affd2b284'
${ noResults }
build_your_own_lisp
/
chapter_02
/
hello_world.c
6 lines
97 B
Raw
Normal View
History
Initial commit
6 years ago
#
include
<stdio.h>
int
main
(
int
argc
,
char
*
*
argv
)
{
puts
(
"
Hello, world!
"
)
;
return
0
;
}