From 86bead46c826edfb3d4b2cf583065d840de8c811 Mon Sep 17 00:00:00 2001 From: xerox Date: Sat, 28 Sep 2019 12:40:03 -0700 Subject: [PATCH] Update README.md --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 38f1221..2d8d714 100755 --- a/README.md +++ b/README.md @@ -19,9 +19,8 @@ V0.8 * Prep for TCP/IP implementation * Prep for VOID data type -# Making a program. -Everything in this language is based around "Structs". These are not the regular structs that are in C. -To make a hello world program it would look like this: +# Hello World. + ``` def Main : { @@ -32,7 +31,7 @@ call Main; ``` Requirements to making a program: -1.) a struct. +1.) a struct/function. 2.) a call statement.