Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
TodePond authored Feb 23, 2024
1 parent d5fd31e commit 4700ff9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ print(score)! //3
Thanks to recent advances in technology, you can now give files names.

```java
======= add.db3 =======
======= add.db =======
function add(a, b) => {
return a + b!
}
Expand All @@ -432,14 +432,14 @@ function add(a, b) => {
Many languages allow you to import things from specific files. In DreamBerd, importing is simpler. Instead, you export _to_ specific files!

```java
===== add.db3 ==
===== add.db ==
function add(a, b) => {
return a + b!
}

export add to "main.db3"!
export add to "main.db"!

===== main.db3 ==
===== main.db ==
import add!
add(3, 2)!
```
Expand Down Expand Up @@ -571,9 +571,9 @@ className Player {

In response to some recent criticism about this design decision, we would like to remind you that this is part of the JavaScript specification, and therefore - out of our control.

## DB3X
## DBX

You can embed DB3X in DreamBerd. It's just DreamBerd, and it's also just HTML.
You can embed DBX in DreamBerd. It's just DreamBerd, and it's also just HTML.

```java
funct App() => {
Expand Down

0 comments on commit 4700ff9

Please sign in to comment.