Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
00408be9
Commit
00408be9
authored
Nov 15, 2018
by
LianaHus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
syntax fix - constructor identifier
parent
339f3ad5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
simple_storage.sol
remix-tests/examples/simple_storage.sol
+1
-1
simple_storage.sol
remix-tests/tests/examples_1/simple_storage.sol
+1
-1
simple_storage.sol
remix-tests/tests/examples_2/simple_storage.sol
+1
-1
simple_string.sol
remix-tests/tests/examples_3/simple_string.sol
+1
-1
No files found.
remix-tests/examples/simple_storage.sol
View file @
00408be9
...
@@ -2,7 +2,7 @@ pragma solidity ^0.4.7;
...
@@ -2,7 +2,7 @@ pragma solidity ^0.4.7;
contract SimpleStorage {
contract SimpleStorage {
uint public storedData;
uint public storedData;
function SimpleStorage
() public {
constructor
() public {
storedData = 100;
storedData = 100;
}
}
...
...
remix-tests/tests/examples_1/simple_storage.sol
View file @
00408be9
...
@@ -2,7 +2,7 @@ pragma solidity ^0.4.7;
...
@@ -2,7 +2,7 @@ pragma solidity ^0.4.7;
contract SimpleStorage {
contract SimpleStorage {
uint public storedData;
uint public storedData;
function SimpleStorage
() public {
constructor
() public {
storedData = 100;
storedData = 100;
}
}
...
...
remix-tests/tests/examples_2/simple_storage.sol
View file @
00408be9
...
@@ -2,7 +2,7 @@ pragma solidity ^0.4.7;
...
@@ -2,7 +2,7 @@ pragma solidity ^0.4.7;
contract SimpleStorage {
contract SimpleStorage {
uint public storedData;
uint public storedData;
function SimpleStorage
() public {
constructor
() public {
storedData = 100;
storedData = 100;
}
}
...
...
remix-tests/tests/examples_3/simple_string.sol
View file @
00408be9
...
@@ -2,7 +2,7 @@ pragma solidity ^0.4.7;
...
@@ -2,7 +2,7 @@ pragma solidity ^0.4.7;
contract SimpleString {
contract SimpleString {
string public storedData;
string public storedData;
function SimpleString
() public {
constructor
() public {
storedData = "Hello world!";
storedData = "Hello world!";
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment