Skip to content

Commit

Permalink
[Doc] add string documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nydragon committed Mar 10, 2023
1 parent ab23a51 commit 7917422
Showing 1 changed file with 32 additions and 20 deletions.
52 changes: 32 additions & 20 deletions doc/bonuses_documentation.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,33 @@

# Bonuses

- [Bonuses](#bonuses)
- [REPL](#repl)
- [Strings, string operations and character escaping](#strings-string-operations-and-character-escaping)
- [Arrays](#arrays)
- [Array Nesting](#array-nesting)
- [Array Operation](#array-operation)
- [Head](#head)
- [Last](#last)
- [Tail](#tail)
- [Init](#init)
- [Join](#join)
- [PushFront](#pushfront)
- [Pushback](#pushback)
- [Input/Output](#inputoutput)
- [Reading from Stdin](#reading-from-stdin)
- [Writing to Stdout](#writing-to-stdout)
- [Reading files](#reading-files)
- [Floating point numbers](#floating-point-numbers)
- [Rigor](#rigor)
- [REPL](#repl)
- [Rigor](#rigor)
- [Syntax Documentation for compiled code](#syntax-documentation-for-compiled-code)
- [Arrays](#arrays)
- [Array Nesting](#array-nesting)
- [Array Operation](#array-operation)
- [Head](#head)
- [Last](#last)
- [Tail](#tail)
- [Init](#init)
- [Join](#join)
- [PushFront](#pushfront)
- [Pushback](#pushback)
- [Strings and character escaping](#strings-and-character-escaping)
- [Input/Output](#inputoutput)
- [Reading from Stdin](#reading-from-stdin)
- [Writing to Stdout](#writing-to-stdout)
- [Reading files](#reading-files)
- [Floating point numbers](#floating-point-numbers)
- [Rigor](#rigor-1)


## REPL

## Strings, string operations and character escaping
## Rigor

### Syntax Documentation for compiled code

## Arrays

Expand Down Expand Up @@ -119,6 +122,15 @@ There are a total of 7 array operations:
[1,2,3,4]
```

## Strings and character escaping

It is possible to use strings in our code, they are written using the following syntax : `"Hello World!"`. It is also possible to escape the character `"` to use it inside of strings.

```lisp
> (print "\"Hello World!\"")
"Hello World!"
```


## Input/Output

Expand Down

0 comments on commit 7917422

Please sign in to comment.