From: Steven Baltakatei Sandoval Date: Fri, 29 Jul 2022 00:05:22 +0000 (+0000) Subject: init(.):Add README and first practice code. X-Git-Url: https://zdv2.bktei.com/gitweb/BK-2023-05.git/commitdiff_plain/5575c6f8462f39aad7708e345c5464f996ef6c84 init(.):Add README and first practice code. --- 5575c6f8462f39aad7708e345c5464f996ef6c84 diff --git a/README.org b/README.org new file mode 100644 index 0000000..b900546 --- /dev/null +++ b/README.org @@ -0,0 +1,4 @@ +* Learning C +** Summary +This repository contains practice code and examples as I learn how to +program in C. diff --git a/test b/test new file mode 100755 index 0000000..a0918ab Binary files /dev/null and b/test differ diff --git a/test.c b/test.c new file mode 100644 index 0000000..b08fbb0 --- /dev/null +++ b/test.c @@ -0,0 +1,12 @@ +/* + * Author: Steven Baltakatei Sandoval + * Purpose: Test my Emacs C setup + * Copyright 2022 + */ + +#include +int main() +{ + puts("Hi, my name is 'Baltakatei'."); + return 0; +} diff --git a/test2 b/test2 new file mode 100755 index 0000000..731a4c9 Binary files /dev/null and b/test2 differ diff --git a/test2.c b/test2.c new file mode 100644 index 0000000..8752230 --- /dev/null +++ b/test2.c @@ -0,0 +1,7 @@ +#include + +int main() +{ + puts("Electric pair mode is pretty cool."); + return 0; +}