Skip to content

fix: remove elon #2851

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 26, 2025
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: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
},
{
"name": "Elon's Toys",
"slug": "elons-toys",
"slug": "jedliks-toys",
"uuid": "18fb2aa2-9748-481e-a321-6b6844c1deb6",
"concepts": [
"methods"
Expand Down
4 changes: 0 additions & 4 deletions exercises/concept/elons-toys/go.mod

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
],
"files": {
"solution": [
"elons_toys.go"
"jedliks_toys.go"
],
"test": [
"elons_toys_test.go"
"jedliks_toys_test.go"
],
"exemplar": [
".meta/exemplar.go"
Expand All @@ -24,7 +24,7 @@
]
},
"forked_from": [
"csharp/elons-toys"
"csharp/jedliks-toys"
],
"blurb": "Learn about methods by playing with Elon's toys",
"custom": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package elon
package jedlik

import "fmt"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package elon
package jedlik

// Car implements a remote controlled car.
type Car struct {
Expand Down
4 changes: 4 additions & 0 deletions exercises/concept/jedliks-toys/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module jedlik

go 1.18

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package elon
package jedlik

// TODO: define the 'Drive()' method

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package elon
package jedlik

import (
"testing"
Expand Down
Loading