Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions exercises/practice/forth/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

In Forth functions are called `words`, they operate on a data stack.
Each word takes its parameter(s) from the stack and return its result(s) on the stack.

Expand Down
2 changes: 2 additions & 0 deletions exercises/practice/line-up/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

In this exercise you will implement a procedure which is meant to allocate the string it returns. Deallocating the string is the responsibility of the prodecure's caller.

```odin
Expand Down
2 changes: 2 additions & 0 deletions exercises/practice/list-ops/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

You will need to use Odin parameter polymorphism (more commonly called generics) for this exercise .
If you haven't seen this feature before, here is a quick run-down to get you started.

Expand Down
2 changes: 2 additions & 0 deletions exercises/practice/raindrops/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Instructions append

## Implementation

In this exercise you will implement a procedure which is meant to allocate the string it returns. Deallocating the string is the responsibility of the prodecure's caller.

```odin
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Instructions append

## Implementation

In Odin, if two individuals are not connected, we will return the value -1.