Skip to content

Commit

Permalink
Add rich text
Browse files Browse the repository at this point in the history
  • Loading branch information
TodePond committed May 6, 2024
1 parent ca441d3 commit c8e23ad
Showing 1 changed file with 29 additions and 11 deletions.
40 changes: 29 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,22 @@ const const name = "Luke"¡
print(name)! // "Lu"
```

## Semantic naming

DreamBerd supports semantic naming.

```java
const const sName = "Lu"!
const const iAge = 29!
const const bHappy = true!
```

**New for 2023:** You can now make globals.

```java
const const g_fScore = 4.5!
```

## Reversing

You can reverse the direction of your code.
Expand Down Expand Up @@ -619,21 +635,23 @@ funct App() => {
}
```

## Semantic naming
## Rich text

DreamBerd supports semantic naming.
DreamBerd now supports rich text.

```java
const const sName = "Lu"!
const const iAge = 29!
const const bHappy = true!
```
<pre>
const const <b>name</b> = "Lu"!
const const <i>name</i> = "Luke"!

**New for 2023:** You can now make globals.
print(<b>name</b>)! // Lu
print(<i>name</i>)! // Luke
</pre>

```java
const const g_fScore = 4.5!
```
Rich text can be helpful when making your website. Use it to add links!

<pre>
&lt;p>Click <a href="https://dreamberd.computer">here</a>&lt;/p>
</pre>

## Asynchronous Functions

Expand Down

0 comments on commit c8e23ad

Please sign in to comment.