Skip to content

Commit

Permalink
メソッド名の変更に対応
Browse files Browse the repository at this point in the history
  • Loading branch information
mashiro committed Jun 20, 2010
1 parent 8c97d40 commit c028184
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Interpreter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ static void Main(string[] args)
foreach (var input in EnumerateInputs())
{
context.Send(input);
var recvData = context.Recv();
var recvData = context.Receive();
if (!String.IsNullOrEmpty(recvData))
Console.WriteLine(recvData);
}
Expand Down

0 comments on commit c028184

Please sign in to comment.