Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vdelachaux authored Oct 29, 2024
1 parent 5364278 commit 8d2c844
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
![Static Badge](https://img.shields.io/badge/Project%20Dependencies-blue?logo=4d&link=https%3A%2F%2Fdeveloper.4d.com%2Fdocs%2FProject%2Fcomponents%2F%23loading-components)
<br>
[![release][release-shield]][release-url]
[![license][license-shield]](LICENSE.md)
<br>
<img src="https://img.shields.io/github/downloads/4D/4D-Macros/total"/>

# <a name="overview">Overview</a>
Expand Down Expand Up @@ -63,13 +61,21 @@ Example transformation:
**Before:**

```4d
_O_C_TEXT(vDetail; $message)// _O_C_TEXT(vMessage)_O_C_LONGINT(vError)_O_C_LONGINT(myMethod; $0)
_O_C_TEXT(vDetail; $message)
// _O_C_TEXT(vMessage)
_O_C_LONGINT(vError)
_O_C_LONGINT(myMethod; $0)
```

**After**:

```4d
var vDetail; $message : Text// _O_C_TEXT(vMessage)var vError : Integer_O_C_LONGINT(myMethod; $0)
var vDetail; $message : Text
// _O_C_TEXT(vMessage)
var vError : Integer
_O_C_LONGINT(myMethod; $0)
```

<br>\* With 20R7+, **C_xxx** commands are preceded by the obsolete marking prefix and are displayed as **\_O\_C_xxx**.
Expand Down

0 comments on commit 8d2c844

Please sign in to comment.