soliditypp icon indicating copy to clipboard operation
soliditypp copied to clipboard

Solidity++, a smart contract programming language that extends Ethereum Solidity by adding asynchronous semantics while maintains major compatibility.

Results 3 soliditypp issues
Sort by recently updated
recently updated
newest added

``` import '../../file.solpp'; ``` This import command works on Mac OS X but not on Windows. The path of the imported file is: ``` C:\GitHub\Repo\helper\file.solpp ``` The compiler on windows...

Compile the following contract: ```solidity // SPDX-License-Identifier: GPL-3.0 pragma soliditypp ^0.8.0; contract TestReceive { receive() external payable { uint i = test(); } function test() pure internal returns(uint) { return...

bug

The issue: vmLogs may appear empty in VSCode debugger output depending on the current contract filename. Here's a zip of both a working and buggy example: [filename_bug.zip](https://github.com/vitelabs/soliditypp/files/7205564/filename_bug.zip) To see the...