DEV Community

Wesh “Hello World” App

Berty Technologies on August 28, 2023

Now that you have been introduced to Wesh in the previous blog post, it’s time to explore the code. We will write a “Hello World” app, similar to t...
Collapse
 
bertytechnologies profile image
Berty Technologies

Thank you @taikedz for your comment and for your advices, taken them into account 😉

Collapse
 
taikedz profile image
TaiKedz

Nice. Wesh sounds like an interesting project, I'll look forward to seeing more. Mesh-networking is a pretty cool concept in and of itself!

For readability on dev.to, have you tried using code blocks? This also helps your readers try out your examples.

Use three backticks and the name of the language on one line, followed by code, and end with three backticks on a line:

```go
func sayHi() {
    fmt.Println("Hello!")
}
```
Enter fullscreen mode Exit fullscreen mode

renders as

func sayHi() {
    fmt.Println("Hello!")
}
Enter fullscreen mode Exit fullscreen mode

works with various languages:

```python
def sayHi():
  print("Hello!")
```
Enter fullscreen mode Exit fullscreen mode
def sayHi():
  print("Hello!")
Enter fullscreen mode Exit fullscreen mode