Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
ros-playground
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Recolic
ros-playground
Merge requests
!1
An error occurred while fetching the assigned milestone of the selected merge_request.
println working
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
println working
test
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Recolic
requested to merge
test
into
master
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
9a569cdf
1 commit,
4 years ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
kernel/kernel.cc
+
2
−
2
Options
@@ -14,13 +14,13 @@ void main() {
for
(
auto
x
=
0
;
x
<
80
;
++
x
)
{
char
c
=
x
%
10
+
'0'
;
char
color
=
x
+
y
*
80
;
set_char
(
x
,
y
,
c
,
color
);
set_char
(
x
,
y
,
' '
,
0x0f
);
}
}
print
(
"Hello world!
\n
"
);
print
(
"Hello world!
\n
"
,
0xb1
);
print
(
"Hello world!
\n
"
,
0xae
);
print
(
"Hello world!
\n
"
,
0x5c
);
print
(
"Hello world!
\n
"
);
print
(
"Hello world!
This is recolic's test message,
\n
"
);
}
Loading